Skip to content

Commit

Permalink
Expose rustls-tls feature of reqwest (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
nemosupremo authored Feb 13, 2024
1 parent e27ce14 commit 98eee3a
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,18 @@ rust-version = "1.67"

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

[features]
default = ["default-tls"]
default-tls = ["reqwest/default-tls"]
native-tls = ["reqwest/native-tls"]
rustls-tls = ["reqwest/rustls-tls"]

[dependencies]
async-trait = "0.1"
tokio = { version = "1", features = ["sync"] }
jsonwebtoken = "9.0"
chrono = { version = "0.4", default-features = false, features = ["clock"] }
reqwest = { version = "0.11", features = ["json"] }
reqwest = { version = "0.11", default-features = false, features = ["json"] }
serde = { version = "1.0", features = ["derive"]}
serde_json = "1.0"
thiserror = "1.0"
Expand Down

0 comments on commit 98eee3a

Please sign in to comment.