Skip to content

Commit

Permalink
chore: Remove OpenSSL dependency (#3552)
Browse files Browse the repository at this point in the history
  • Loading branch information
adamspofford-dfinity authored Jan 30, 2024
1 parent d640d4a commit 703531b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 129 deletions.
123 changes: 2 additions & 121 deletions Cargo.lock

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

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ mime_guess = "2.0.4"
num-traits = "0.2.14"
pem = "1.0.2"
proptest = "1.0.0"
reqwest = { version = "0.11.23", default-features = false, features = ["rustls-tls"] }
ring = "0.16.11"
schemars = "0.8"
sec1 = "0.3.0"
Expand Down
2 changes: 1 addition & 1 deletion src/dfx-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ ic-identity-hsm = { workspace = true }
k256 = { version = "0.11.4", features = ["pem"] }
keyring.workspace = true
lazy_static.workspace = true
reqwest = { version = "0.11.9", features = ["blocking", "json"] }
reqwest = { workspace = true, features = ["blocking", "json"] }
ring.workspace = true
schemars.workspace = true
sec1 = { workspace = true, features = ["std"] }
Expand Down
9 changes: 2 additions & 7 deletions src/dfx/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ flate2 = { version = "1.0.11", default-features = false, features = [
"zlib-ng",
] }
hex = "0.4.3"
reqwest = "0.11.9"
reqwest.workspace = true
serde = { version = "1.0", features = ["derive"] }
sha2 = "0.10.6"
tar = "0.4.26"
Expand Down Expand Up @@ -83,12 +83,7 @@ pem.workspace = true
petgraph = "0.6.0"
rand = "0.8.5"
regex = "1.5.5"
reqwest = { version = "0.11.9", default-features = false, features = [
"blocking",
"json",
"rustls-tls",
"native-tls-vendored",
] }
reqwest = { workspace = true, features = ["blocking", "json"] }
ring.workspace = true
rust_decimal = "1.22.0"
rustls-webpki = "0.101.4"
Expand Down

0 comments on commit 703531b

Please sign in to comment.