Skip to content

Commit eacf2bd

Browse files
authored
chore: striped away the openssl dependency and use rustls instead (#34)
Signed-off-by: Erik Micheel <[email protected]>
1 parent 5d47f4a commit eacf2bd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/flagd/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "open-feature-flagd"
33
version = "0.0.5"
44
edition = "2021"
5-
rust-version = "1.81.0" # MSRV
5+
rust-version = "1.83" # MSRV
66
description = "The official flagd provider for OpenFeature."
77
documentation = "https://docs.rs/open-feature-flagd"
88
readme = "README.md"
@@ -47,7 +47,7 @@ serde_json = "1.0"
4747
serde = { version = "1.0", features = ["derive"] }
4848
lru = "0.13"
4949
futures = "0.3"
50-
reqwest = { version = "0.12", features = ["json", "stream"] }
50+
reqwest = { version = "0.12", default-features = false, features = ["json", "stream", "rustls-tls"] }
5151
tracing = "0.1"
5252
tracing-subscriber = "0.3"
5353
anyhow = "1.0.97"

0 commit comments

Comments
 (0)