launchdarkly / rust-server-sdk

LaunchDarkly Server-Side SDK for Rust
https://docs.launchdarkly.com/sdk/server-side/rust
Other
18 stars 13 forks source link

fix: Limit triomphe dependency to <=0.1.10 #83

Closed keelerm84 closed 1 month ago

keelerm84 commented 1 month ago

Our SDK uses moka for some unit tests, which in turn has a dependency on triomphe. triomphe does not provide an MSRV, resulting in their latest release breaking on rustc 1.74.

To avoid bumping our own MSRV to 1.76 for now, we are going to force the triomphe dependency to be <=0.1.10. Once we bump rustc in the future, we can clean up this change.

keelerm84 commented 1 month ago

Related request to add an MSRV policy.