change: Remove tls 1.2 support

This commit is contained in:
Arne Beer 2022-11-21 15:16:42 +01:00
parent bf8f213bb1
commit befe99ffc2
No known key found for this signature in database
GPG key ID: CC9408F679023B65
3 changed files with 4 additions and 3 deletions

1
Cargo.lock generated
View file

@ -1569,7 +1569,6 @@ version = "0.20.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "539a2bfe908f471bfa933876bd1eb6a19cf2176d375f82ef7f99530a40e48c2c"
dependencies = [
"log",
"ring",
"sct",
"webpki",

View file

@ -15,6 +15,8 @@ The concept of SemVer is applied to the daemon/client API, but not the library A
- Make `TaskToRestart::path` and `TaskToRestart::command` optional.
- Make `EditMessage::path` and `EditMessage::command` optional.
- The `children` flag has been removed for the `Start`-,`Pause`-,`Kill`- and `ResetMessage`.
- No longer support TLS 1.2 certificates, only accept version 1.3.
All generated certificates were 1.3 anyway, so there shouldn't be any breakage, except users created their own certs.
### Added

View file

@ -23,7 +23,7 @@ dirs = "4"
rand = "0.8"
rcgen = "0.9"
rev_buf_reader = "0.3"
rustls = "0.20"
rustls = { version = "0.20", default-features = false }
rustls-pemfile = "1"
serde_cbor = "0.11"
serde_yaml = "0.9"
@ -31,7 +31,7 @@ shellexpand = "2.1"
strum = "0.24"
strum_macros = "0.24"
thiserror = "1"
tokio-rustls = "0.23"
tokio-rustls = { version = "0.23", default-features = false }
command-group = { workspace = true }
log = { workspace = true }