This is an automated email from the ASF dual-hosted git repository. mgrigorov pushed a commit to branch avro-3779-bigdecimal-explicit in repository https://gitbox.apache.org/repos/asf/avro.git
commit f05134f28c629433a64ec874b002462254ebd272 Author: Martin Tzvetanov Grigorov <[email protected]> AuthorDate: Tue Nov 21 15:45:18 2023 +0200 AVRO-3779: [Rust] Fully specify the dependency to bigdecimal crate Depend on full version and do not enable default features Signed-off-by: Martin Tzvetanov Grigorov <[email protected]> --- lang/rust/Cargo.lock | 4 ++-- lang/rust/avro/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lang/rust/Cargo.lock b/lang/rust/Cargo.lock index d585c8fb4..b50a6383c 100644 --- a/lang/rust/Cargo.lock +++ b/lang/rust/Cargo.lock @@ -158,9 +158,9 @@ dependencies = [ [[package]] name = "bigdecimal" -version = "0.4.1" +version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "454bca3db10617b88b566f205ed190aedb0e0e6dd4cad61d3988a72e8c5594cb" +checksum = "c06619be423ea5bb86c95f087d5707942791a08a85530df0db2209a3ecfb8bc9" dependencies = [ "autocfg", "libm", diff --git a/lang/rust/avro/Cargo.toml b/lang/rust/avro/Cargo.toml index b9610a8b5..5cba5aced 100644 --- a/lang/rust/avro/Cargo.toml +++ b/lang/rust/avro/Cargo.toml @@ -73,7 +73,7 @@ typed-builder = { default-features = false, version = "0.16.2" } uuid = { default-features = false, version = "1.4.1", features = ["serde", "std"] } xz2 = { default-features = false, version = "0.1.7", optional = true } zstd = { default-features = false, version = "0.12.4+zstd.1.5.2", optional = true } -bigdecimal = "0.4" +bigdecimal = { default-features = false, version = "0.4.2"} [target.'cfg(target_arch = "wasm32")'.dependencies] quad-rand = { default-features = false, version = "0.2.1" }
