Skip to content

Commit

Permalink
use unmerged updated rustls
Browse files Browse the repository at this point in the history
  • Loading branch information
Taowyoo committed Jan 5, 2024
1 parent c131710 commit 907a091
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ publish = false
rustls-mbedcrypto-provider = { path = "../rustls-mbedcrypto-provider", features = ["tls12"] }
rustls-mbedpki-provider = { path = "../rustls-mbedpki-provider" }
env_logger = "0.10"
rustls = { git = "https://github.com/fortanix/rustls", tag = "ffdhe-r1", default-features = false }
rustls = { git = "https://github.com/fortanix/rustls", rev = "1f9441aba2fe859e98084c164bacc334a5140689", default-features = false }
rustls-native-certs = "0.7.0"
rustls-pki-types = "1"
rustls-pemfile = "2"
4 changes: 2 additions & 2 deletions rustls-mbedcrypto-provider/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ categories = ["network-programming", "cryptography"]
resolver = "2"

[dependencies]
rustls = { git = "https://github.com/fortanix/rustls", tag = "ffdhe-r1", default-features = false }
rustls = { git = "https://github.com/fortanix/rustls", rev = "1f9441aba2fe859e98084c164bacc334a5140689", default-features = false }
mbedtls = { version = "0.12.1", default-features = false, features = ["std"] }
log = { version = "0.4.4", optional = true }
webpki = { package = "rustls-webpki", version = "0.102.0", features = [
Expand All @@ -25,7 +25,7 @@ bit-vec = "0.6.3"


[dev-dependencies]
rustls = { git = "https://github.com/fortanix/rustls", tag = "ffdhe-r1", default-features = false, features = [
rustls = { git = "https://github.com/fortanix/rustls", rev = "1f9441aba2fe859e98084c164bacc334a5140689", default-features = false, features = [
"ring",
] }
webpki-roots = "0.26.0"
Expand Down
4 changes: 2 additions & 2 deletions rustls-mbedpki-provider/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ categories = ["network-programming", "cryptography"]
resolver = "2"

[dependencies]
rustls = { git = "https://github.com/fortanix/rustls", tag = "ffdhe-r1", default_features = false }
rustls = { git = "https://github.com/fortanix/rustls", rev = "1f9441aba2fe859e98084c164bacc334a5140689", default_features = false }
mbedtls = { version = "0.12.1", features = [
"x509",
"chrono",
Expand All @@ -24,6 +24,6 @@ utils = { package = "rustls-mbedtls-provider-utils", path = "../rustls-mbedtls-p

[dev-dependencies]
rustls-pemfile = "2"
rustls = { git = "https://github.com/fortanix/rustls", tag = "ffdhe-r1" }
rustls = { git = "https://github.com/fortanix/rustls", rev = "1f9441aba2fe859e98084c164bacc334a5140689" }
# We enable the time feature for tests to make sure it does not mess up cert expiration checking
mbedtls = { version = "0.12.1", features = ["time"], default_features = false }
2 changes: 1 addition & 1 deletion rustls-mbedtls-provider-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ categories = ["network-programming", "cryptography"]
resolver = "2"

[dependencies]
rustls = { git = "https://github.com/fortanix/rustls", tag = "ffdhe-r1", default-features = false }
rustls = { git = "https://github.com/fortanix/rustls", rev = "1f9441aba2fe859e98084c164bacc334a5140689", default-features = false }
mbedtls = { version = "0.12.1", default-features = false, features = ["std"] }

0 comments on commit 907a091

Please sign in to comment.