@@ -4,14 +4,17 @@ description = "LaunchDarkly Server-Side SDK"
44version = " 2.5.1"
55authors = [" LaunchDarkly" ]
66edition = " 2021"
7- rust-version = " 1.81.0" # MSRV
7+ rust-version = " 1.81.0" # MSRV
88license = " Apache-2.0"
99homepage = " https://docs.launchdarkly.com/sdk/server-side/rust"
1010repository = " 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 ]
1720features = [" event-compression" ]
@@ -34,16 +37,18 @@ tokio = { version = "1.17.0", features = ["rt-multi-thread"] }
3437parking_lot = " 0.12.0"
3538tokio-stream = { version = " 0.1.8" , features = [" sync" ] }
3639moka = { 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 }
4043rand = " 0.9"
4144flate2 = { version = " 1.0.35" , optional = true }
4245
4346[dev-dependencies ]
4447maplit = " 1.0.1"
4548env_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
4752tokio = { version = " 1.17.0" , features = [" macros" , " time" ] }
4853test-case = " 3.2.1"
4954mockito = " 1.2.0"
@@ -54,7 +59,11 @@ testing_logger = "0.1.1"
5459
5560[features ]
5661default = [" 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+ ]
5867event-compression = [" flate2" ]
5968
6069[[example ]]
0 commit comments