Skip to content

Commit

Permalink
Merge pull request #4
Browse files Browse the repository at this point in the history
(@nihaals) Add `rustls-tls` feature
  • Loading branch information
Emka877 authored Nov 12, 2024
2 parents 527df67 + e812763 commit 0f36d6b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,17 @@ authors = ["Emka877"]

[dependencies]
tokio = { version = "1.41.1", features = ["macros", "rt-multi-thread"] }
reqwest = { version = "0.12.9", features = ["json", "blocking", "multipart"] }
reqwest = { version = "0.12.9", features = ["json", "blocking", "multipart"], default-features = false }
serde = { version = "1.0.215", features = ["derive"] }

[dev-dependencies]
serde_json = "1.0.132"
ron = "0.8.1"

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

[[example]]
name = "usage"
Expand Down

0 comments on commit 0f36d6b

Please sign in to comment.