Skip to content

Commit 8adaae7

Browse files
committed
Bump hyper-tls version
1 parent 355ea1f commit 8adaae7

File tree

1 file changed

+18
-9
lines changed

1 file changed

+18
-9
lines changed

launchdarkly-server-sdk/Cargo.toml

Lines changed: 18 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,17 @@ description = "LaunchDarkly Server-Side SDK"
44
version = "2.5.1"
55
authors = ["LaunchDarkly"]
66
edition = "2021"
7-
rust-version = "1.81.0" # MSRV
7+
rust-version = "1.81.0" # MSRV
88
license = "Apache-2.0"
99
homepage = "https://docs.launchdarkly.com/sdk/server-side/rust"
1010
repository = "https://github.com/launchdarkly/rust-server-sdk"
11-
keywords = ["launchdarkly", "launchdarkly-sdk", "feature-flags", "feature-toggles"]
12-
exclude = [
13-
"coverage.sh"
11+
keywords = [
12+
"launchdarkly",
13+
"launchdarkly-sdk",
14+
"feature-flags",
15+
"feature-toggles",
1416
]
17+
exclude = ["coverage.sh"]
1518

1619
[package.metadata.docs.rs]
1720
features = ["event-compression"]
@@ -34,16 +37,18 @@ tokio = { version = "1.17.0", features = ["rt-multi-thread"] }
3437
parking_lot = "0.12.0"
3538
tokio-stream = { version = "0.1.8", features = ["sync"] }
3639
moka = { version = "0.12.1", features = ["sync"] }
37-
uuid = {version = "1.2.2", features = ["v4"] }
38-
hyper = { version = "0.14.19", features = ["client", "http1", "http2", "tcp"] }
39-
hyper-rustls = { version = "0.24.1" , optional = true}
40+
uuid = { version = "1.2.2", features = ["v4"] }
41+
hyper = { version = "1.6.0", features = ["client", "http1", "http2", "tcp"] }
42+
hyper-rustls = { version = "0.27.6", optional = true }
4043
rand = "0.9"
4144
flate2 = { version = "1.0.35", optional = true }
4245

4346
[dev-dependencies]
4447
maplit = "1.0.1"
4548
env_logger = "0.10.0"
46-
serde_json = { version = "1.0.73", features = ["preserve_order"] } # for deterministic JSON testing
49+
serde_json = { version = "1.0.73", features = [
50+
"preserve_order",
51+
] } # for deterministic JSON testing
4752
tokio = { version = "1.17.0", features = ["macros", "time"] }
4853
test-case = "3.2.1"
4954
mockito = "1.2.0"
@@ -54,7 +59,11 @@ testing_logger = "0.1.1"
5459

5560
[features]
5661
default = ["rustls"]
57-
rustls = ["hyper-rustls/http1", "hyper-rustls/http2", "eventsource-client/rustls"]
62+
rustls = [
63+
"hyper-rustls/http1",
64+
"hyper-rustls/http2",
65+
"eventsource-client/rustls",
66+
]
5867
event-compression = ["flate2"]
5968

6069
[[example]]

0 commit comments

Comments
 (0)