Skip to content

Commit

Permalink
reqwest: use rustls (#899)
Browse files Browse the repository at this point in the history
Consolidates dependency tree

flow-rs wasn't using its reqwest dependency,
nor was it using serde, serde_yaml, or tokio
  • Loading branch information
serprex authored Dec 25, 2023
1 parent ac5bbb2 commit 0806d33
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 88 deletions.
77 changes: 0 additions & 77 deletions nexus/Cargo.lock

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

10 changes: 0 additions & 10 deletions nexus/flow-rs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,8 @@ name = "flow-rs"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
tokio = { version = "1", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
serde_json = "1.0"
reqwest = { version = "0.11", features = [
"blocking",
"json",
"native-tls-vendored",
] }
anyhow = "1.0"
tracing = "0.1"
tonic = "0.10"
Expand Down
2 changes: 1 addition & 1 deletion nexus/peer-snowflake/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
futures = "0.3"
ureq = { version = "2", features = ["json", "charset"] }
reqwest = { version = "0.11", features = ["json", "gzip"] }
reqwest = { version = "0.11", default-features = false, features = ["json", "gzip", "rustls-tls"] }
anyhow = "1.0"
tokio = { version = "1.21", features = ["full"] }
hex = "0.4"
Expand Down

0 comments on commit 0806d33

Please sign in to comment.