diff --git a/Cargo.lock b/Cargo.lock index 55ab3e8107..c25b242648 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -330,7 +330,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "bv" -version = "0.11.0" +version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "feature-probe 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3916,9 +3916,7 @@ version = "1.0.8" dependencies = [ "bincode 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "bs58 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "chrono 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", - "compression 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "bv 0.11.1 (registry+https://github.com/rust-lang/crates.io-index)", "core_affinity 0.5.10 (registry+https://github.com/rust-lang/crates.io-index)", "crossbeam-channel 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", "ed25519-dalek 1.0.0-pre.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4445,7 +4443,7 @@ version = "1.0.8" dependencies = [ "assert_matches 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "bincode 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "bv 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "bv 0.11.1 (registry+https://github.com/rust-lang/crates.io-index)", "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "fs_extra 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4490,7 +4488,7 @@ dependencies = [ "assert_matches 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "bincode 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "bs58 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "bv 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "bv 0.11.1 (registry+https://github.com/rust-lang/crates.io-index)", "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "chrono 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", "ed25519-dalek 1.0.0-pre.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -6229,7 +6227,7 @@ dependencies = [ "checksum bs58 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b170cd256a3f9fa6b9edae3e44a7dfdfc77e8124dbc3e2612d75f9c3e2396dae" "checksum bstr 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "e0a692f1c740e7e821ca71a22cf99b9b2322dfa94d10f71443befb1797b3946a" "checksum bumpalo 2.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ad807f2fc2bf185eeb98ff3a901bd46dc5ad58163d0fa4577ba0d25674d71708" -"checksum bv 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6cd4ae9e585e783756cd14b0ea21863acdfbb6383664ac2f7c9ef8d180a14727" +"checksum bv 0.11.1 (registry+https://github.com/rust-lang/crates.io-index)" = "8834bb1d8ee5dc048ee3124f2c7c1afcc6bc9aed03f11e9dfd8c69470a5db340" "checksum byte-tools 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "560c32574a12a89ecd91f5e742165893f86e3ab98d21f8ea548658eb9eef5f40" "checksum byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7" "checksum byte-unit 3.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "6894a79550807490d9f19a138a6da0f8830e70c83e83402dd23f16fd6c479056" diff --git a/core/Cargo.toml b/core/Cargo.toml index 58b25eee24..b2ce90400e 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -15,6 +15,7 @@ codecov = { repository = "solana-labs/solana", branch = "master", service = "git [dependencies] bincode = "1.2.1" +bv = { version = "0.11.1", features = ["serde"] } bs58 = "0.3.0" byteorder = "1.3.2" chrono = { version = "0.4.10", features = ["serde"] } diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index 695bc77adb..3ce59cebfa 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -10,7 +10,7 @@ edition = "2018" [dependencies] bincode = "1.2.1" -bv = { version = "0.11.0", features = ["serde"] } +bv = { version = "0.11.1", features = ["serde"] } byteorder = "1.3.2" fnv = "1.0.6" fs_extra = "1.1.0" diff --git a/sdk/Cargo.toml b/sdk/Cargo.toml index b8800c721e..0cc0a4905f 100644 --- a/sdk/Cargo.toml +++ b/sdk/Cargo.toml @@ -29,7 +29,7 @@ default = [ assert_matches = { version = "1.3.0", optional = true } bincode = "1.2.1" bs58 = "0.3.0" -bv = { version = "0.11.0", features = ["serde"] } +bv = { version = "0.11.1", features = ["serde"] } byteorder = { version = "1.3.2", optional = true } chrono = { version = "0.4", optional = true } generic-array = { version = "0.13.2", default-features = false, features = ["serde", "more_lengths"] }