Skip to content

Commit 19a1968

Browse files
authored
Pin the version of the base64ct indirect dependency (#3420)
## Motivation Version 1.7.0 breaks semver compatibility by requiring the usage of a new Rust edition. More information is available in RustCrypto/formats#1684. ## Proposal We should pin it to the last version that we still support at least until we manage to update to the new Rust edition. ## Test Plan CI should catch any regressions. ## Release Plan We may have to make a new SDK release with a new patch version. ## Links - [reviewer checklist](https://github.com/linera-io/linera-protocol/blob/main/CONTRIBUTING.md#reviewer-checklist)
1 parent 2e09607 commit 19a1968

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

Cargo.lock

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/Cargo.lock

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

linera-sdk/Cargo.toml

+7
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ development = ["linera-sdk"]
1818
features = ["test", "wasmer"]
1919
targets = ["wasm32-unknown-unknown", "x86_64-unknown-linux-gnu"]
2020

21+
[package.metadata.cargo-machete]
22+
# TODO(#3421): Remove the pinned version once the `linera-*` crates move to Rust Edition 2024
23+
ignored = ["base64ct"]
24+
2125
[features]
2226
ethereum = ["async-trait", "linera-ethereum"]
2327
unstable-oracles = ["linera-core/unstable-oracles", "linera-execution/unstable-oracles"]
@@ -56,6 +60,9 @@ serde_json.workspace = true
5660
thiserror.workspace = true
5761
wit-bindgen.workspace = true
5862

63+
# TODO(#3421): Remove the pinned version once the `linera-*` crates move to Rust Edition 2024
64+
base64ct = "=1.6.0"
65+
5966
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
6067
async-graphql.workspace = true
6168
anyhow.workspace = true

0 commit comments

Comments
 (0)