Skip to content

Commit

Permalink
chore: Remove unnecessary explicit triomphe dependency (#91)
Browse files Browse the repository at this point in the history
This was temporarily required as `triomphe` was required transitively
through `moka`, which wasn't pinning it appropriately to maintain their
stated MSRV policy.

That was changed with `moka v0.12.8`, allowing us to remove this
workaround.
  • Loading branch information
keelerm84 authored Jul 15, 2024
1 parent 78c9668 commit 9d1fbd2
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions launchdarkly-server-sdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ description = "LaunchDarkly Server-Side SDK"
version = "2.1.0"
authors = ["LaunchDarkly"]
edition = "2021"
# TODO: When you change this to 1.76+, remove the explicit triomphe dependency
# below.
rust-version = "1.74.0" # MSRV
license = "Apache-2.0"
homepage = "https://docs.launchdarkly.com/sdk/server-side/rust"
Expand Down Expand Up @@ -33,10 +31,6 @@ tokio = { version = "1.17.0", features = ["rt-multi-thread"] }
parking_lot = "0.12.0"
tokio-stream = { version = "0.1.8", features = ["sync"] }
moka = { version = "0.12.1", features = ["sync"] }
# NOTE: This dependency is only here to deal with a rustc compliation issue.
# Once we move to rustc 1.76, we should be able to remove this explicit
# dependency.
triomphe = { version = "<=0.1.10" }
uuid = {version = "1.2.2", features = ["v4"] }
hyper = { version = "0.14.19", features = ["client", "http1", "http2", "tcp"] }
hyper-rustls = { version = "0.24.1" , optional = true}
Expand Down

0 comments on commit 9d1fbd2

Please sign in to comment.