Skip to content

Commit 597eb99

Browse files
chore(deps): update derive_more requirement from 0.99.17 to 1.0.0 (#93)
* chore(deps): update derive_more requirement from 0.99.17 to 1.0.0 Updates the requirements on [derive_more](https://github.com/JelteF/derive_more) to permit the latest version. - [Release notes](https://github.com/JelteF/derive_more/releases) - [Changelog](https://github.com/JelteF/derive_more/blob/master/CHANGELOG.md) - [Commits](JelteF/derive_more@v0.99.17...v1.0.0) --- updated-dependencies: - dependency-name: derive_more dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> * chore(deps): update derive_more The new version of derive_more disables all features by default, so we need to enable the derives that we use. It also bumped MSRV to 1.75.0 (released 2023-12-28). fine. --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Oleksii Shmalko <[email protected]>
1 parent a114647 commit 597eb99

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

eppo_core/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ repository = "https://github.com/Eppo-exp/rust-sdk"
77
license = "MIT"
88
keywords = ["eppo", "feature-flags"]
99
categories = ["config"]
10-
rust-version = "1.71.1"
10+
rust-version = "1.75.0"
1111

1212
[features]
1313
# Add implementation of `FromPyObject`/`ToPyObject` for some types.
@@ -20,7 +20,7 @@ vendored = ["reqwest/native-tls-vendored"]
2020

2121
[dependencies]
2222
chrono = { version = "0.4.38", features = ["serde"] }
23-
derive_more = "0.99.17"
23+
derive_more = { version = "1.0.0", features = ["from"] }
2424
faststr = { version = "0.2.23", features = ["serde"] }
2525
log = { version = "0.4.21", features = ["kv", "kv_serde"] }
2626
md5 = "0.7.0"

ruby-sdk/ext/eppo_client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ version = "3.3.0"
55
edition = "2021"
66
license = "MIT"
77
publish = false
8-
rust-version = "1.71.1"
8+
rust-version = "1.75.0"
99

1010
[lib]
1111
crate-type = ["cdylib"]

rust-sdk/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ repository = "https://github.com/Eppo-exp/rust-sdk"
88
license = "MIT"
99
keywords = ["eppo", "feature-flags"]
1010
categories = ["config"]
11-
rust-version = "1.71.1"
11+
rust-version = "1.75.0"
1212

1313
[dependencies]
1414
eppo_core = { version = "=4.1.1", path = "../eppo_core" }

0 commit comments

Comments
 (0)