diff --git a/Cargo.lock b/Cargo.lock index 06d98ae3..9823de90 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -187,48 +187,48 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" [[package]] name = "candid" version = "0.10.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c30ee7f886f296b6422c0ff017e89dd4f831521dfdcc76f3f71aae1ce817222" dependencies = [ "anyhow", - "bincode", "binread", "byteorder", - "candid_derive 0.6.6", - "candid_parser 0.2.0-beta.4", + "candid_derive 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", "hex", - "ic_principal 0.1.1", + "ic_principal 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "leb128", "num-bigint", "num-traits", "paste", "pretty", - "rand", "serde", "serde_bytes", - "serde_cbor", - "serde_json", "stacker", "thiserror", ] [[package]] name = "candid" -version = "0.10.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6c30ee7f886f296b6422c0ff017e89dd4f831521dfdcc76f3f71aae1ce817222" +version = "0.10.11" dependencies = [ "anyhow", + "bincode", "binread", "byteorder", - "candid_derive 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "candid_derive 0.6.6", + "candid_parser 0.2.0-beta.4", "hex", - "ic_principal 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "ic_principal 0.1.1", "leb128", "num-bigint", "num-traits", "paste", "pretty", + "rand", "serde", "serde_bytes", + "serde_cbor", + "serde_json", "stacker", "thiserror", ] @@ -262,7 +262,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "48a3da76f989cd350b7342c64c6c6008341bb6186f6832ef04e56dc50ba0fd76" dependencies = [ "anyhow", - "candid 0.10.10 (registry+https://github.com/rust-lang/crates.io-index)", + "candid 0.10.10", "codespan-reporting", "convert_case", "hex", @@ -280,7 +280,7 @@ version = "0.2.0-beta.4" dependencies = [ "anyhow", "arbitrary", - "candid 0.10.10", + "candid 0.10.11", "codespan-reporting", "console", "convert_case", @@ -495,7 +495,7 @@ name = "didc-js" version = "0.0.0" dependencies = [ "anyhow", - "candid 0.10.10 (registry+https://github.com/rust-lang/crates.io-index)", + "candid 0.10.10", "candid_parser 0.1.4", "console_error_panic_hook", "getrandom", diff --git a/Changelog.md b/Changelog.md index adf104cd..2ae18323 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,7 +1,9 @@ # Changelog -## [Unreleased] +## 2024-12-10 + +### Candid 0.10.11 * Add `IDLBuilder.try_reserve_value_serializer_capacity()` to reserve capacity before serializing a large amount of data. diff --git a/rust/candid/Cargo.toml b/rust/candid/Cargo.toml index 3385f1b2..1ec91d55 100644 --- a/rust/candid/Cargo.toml +++ b/rust/candid/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "candid" -version = "0.10.10" +version = "0.10.11" edition = "2021" rust-version.workspace = true authors = ["DFINITY Team"]