From 50ad5f618d85b9dc73a8aa1a927cfd69886e8ec0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 17 Dec 2020 16:54:55 +0000 Subject: [PATCH] Bump bcs from 0.1.1 to 0.1.2 Bumps [bcs](https://github.com/diem/bcs) from 0.1.1 to 0.1.2. - [Release notes](https://github.com/diem/bcs/releases) - [Changelog](https://github.com/diem/bcs/blob/master/CHANGELOG.md) - [Commits](https://github.com/diem/bcs/compare/v0.1.1...v0.1.2) Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- client/diem-dev/Cargo.toml | 2 +- client/faucet/Cargo.toml | 2 +- client/json-rpc/Cargo.toml | 2 +- client/swiss-knife/Cargo.toml | 2 +- client/transaction-builder/Cargo.toml | 2 +- common/bitvec/Cargo.toml | 2 +- config/Cargo.toml | 2 +- config/generate-key/Cargo.toml | 2 +- config/management/Cargo.toml | 2 +- config/management/genesis/Cargo.toml | 2 +- config/management/network-address-encryption/Cargo.toml | 2 +- config/management/operational/Cargo.toml | 2 +- config/seed-peer-generator/Cargo.toml | 2 +- consensus/Cargo.toml | 2 +- consensus/consensus-types/Cargo.toml | 2 +- consensus/safety-rules/Cargo.toml | 2 +- crypto/crypto/Cargo.toml | 2 +- execution/db-bootstrapper/Cargo.toml | 2 +- execution/execution-correctness/Cargo.toml | 2 +- execution/executor-types/Cargo.toml | 2 +- execution/executor/Cargo.toml | 2 +- json-rpc/Cargo.toml | 2 +- json-rpc/types/Cargo.toml | 2 +- language/compiler/Cargo.toml | 2 +- language/compiler/bytecode-source-map/Cargo.toml | 2 +- language/diem-tools/diem-events-fetcher/Cargo.toml | 2 +- language/diem-tools/diem-validator-interface/Cargo.toml | 2 +- language/diem-tools/transaction-replay/Cargo.toml | 2 +- language/diem-tools/writeset-transaction-generator/Cargo.toml | 2 +- language/diem-vm/Cargo.toml | 2 +- language/e2e-testsuite/Cargo.toml | 2 +- language/move-core/types/Cargo.toml | 2 +- language/move-lang/Cargo.toml | 2 +- language/move-prover/abigen/Cargo.toml | 2 +- language/move-prover/errmapgen/Cargo.toml | 2 +- language/move-vm/types/Cargo.toml | 2 +- language/stdlib/Cargo.toml | 2 +- language/stdlib/compiled/Cargo.toml | 2 +- language/testing-infra/e2e-tests/Cargo.toml | 2 +- language/tools/genesis-viewer/Cargo.toml | 2 +- language/tools/move-cli/Cargo.toml | 2 +- language/tools/move-coverage/Cargo.toml | 2 +- language/tools/move-explain/Cargo.toml | 2 +- language/tools/resource-viewer/Cargo.toml | 2 +- language/tools/vm-genesis/Cargo.toml | 2 +- language/transaction-builder/generator/Cargo.toml | 2 +- mempool/Cargo.toml | 2 +- network/Cargo.toml | 2 +- network/builder/Cargo.toml | 2 +- network/network-address/Cargo.toml | 2 +- network/simple-onchain-discovery/Cargo.toml | 2 +- secure/json-rpc/Cargo.toml | 2 +- secure/storage/Cargo.toml | 2 +- state-synchronizer/Cargo.toml | 2 +- storage/backup/backup-cli/Cargo.toml | 2 +- storage/backup/backup-service/Cargo.toml | 2 +- storage/diemdb/Cargo.toml | 2 +- storage/jellyfish-merkle/Cargo.toml | 2 +- storage/storage-client/Cargo.toml | 2 +- storage/storage-interface/Cargo.toml | 2 +- storage/storage-service/Cargo.toml | 2 +- testsuite/cli/Cargo.toml | 2 +- testsuite/cluster-test/Cargo.toml | 2 +- testsuite/diem-fuzzer/Cargo.toml | 2 +- testsuite/generate-format/Cargo.toml | 2 +- testsuite/smoke-test/Cargo.toml | 2 +- types/Cargo.toml | 2 +- 68 files changed, 69 insertions(+), 69 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ee0de5c7e5c8..87972fe90aa7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -323,9 +323,9 @@ checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd" [[package]] name = "bcs" -version = "0.1.1" +version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "de93f2dbfb1c5259e38da712ab293659ef9139b496d5253478bc8a709c295610" +checksum = "a86ab68e515a8b195b2be6ff544a83b626eb3b15ea435be1fa6b9d4ccd1591ac" dependencies = [ "serde", "thiserror", diff --git a/client/diem-dev/Cargo.toml b/client/diem-dev/Cargo.toml index 998fea73de2c..10b610611857 100644 --- a/client/diem-dev/Cargo.toml +++ b/client/diem-dev/Cargo.toml @@ -13,7 +13,7 @@ edition = "2018" libc = "0.2.81" static_assertions = "1.1.0" -bcs = "0.1.1" +bcs = "0.1.2" diem-types = { path = "../../types", version = "0.1.0" } diem-crypto = { path = "../../crypto/crypto", version = "0.1.0" } diem-workspace-hack = { path = "../../common/workspace-hack", version = "0.1.0" } diff --git a/client/faucet/Cargo.toml b/client/faucet/Cargo.toml index d8eb6385f72b..ad0abd5f60e5 100644 --- a/client/faucet/Cargo.toml +++ b/client/faucet/Cargo.toml @@ -20,7 +20,7 @@ tokio = { version = "0.2.22", features = ["full"] } warp = "0.2.5" generate-key = { path = "../../config/generate-key", version = "0.1.0" } -bcs = "0.1.1" +bcs = "0.1.2" diem-crypto = { path = "../../crypto/crypto/", version = "0.1.0" } diem-infallible = { path = "../../common/infallible", version = "0.1.0" } diem-json-rpc-client = { path = "../json-rpc", version = "0.1.0" } diff --git a/client/json-rpc/Cargo.toml b/client/json-rpc/Cargo.toml index 7e68f8ad3147..cdef73768a57 100644 --- a/client/json-rpc/Cargo.toml +++ b/client/json-rpc/Cargo.toml @@ -21,7 +21,7 @@ serde_json = "1.0.60" tokio = { version = "0.2.22", features = ["full"] } diem-crypto = { path = "../../crypto/crypto", version = "0.1.0" } -bcs = "0.1.1" +bcs = "0.1.2" diem-json-rpc-types = { path = "../../json-rpc/types" } diem-types = { path = "../../types", version = "0.1.0" } diem-workspace-hack = { path = "../../common/workspace-hack", version = "0.1.0" } diff --git a/client/swiss-knife/Cargo.toml b/client/swiss-knife/Cargo.toml index 535badca50b7..5f152f15e39b 100644 --- a/client/swiss-knife/Cargo.toml +++ b/client/swiss-knife/Cargo.toml @@ -16,7 +16,7 @@ hex = "0.4.2" serde_json = "1.0.60" serde = { version = "1.0.117", features = ["derive"] } -bcs = "0.1.1" +bcs = "0.1.2" diem-types = { path = "../../types", version = "0.1.0" } diem-crypto = { path = "../../crypto/crypto", version = "0.1.0" } diem-workspace-hack = { path = "../../common/workspace-hack", version = "0.1.0" } diff --git a/client/transaction-builder/Cargo.toml b/client/transaction-builder/Cargo.toml index fa6ecc6e8d80..12f2e9db8c17 100644 --- a/client/transaction-builder/Cargo.toml +++ b/client/transaction-builder/Cargo.toml @@ -13,7 +13,7 @@ once_cell = "1.4.1" serde = { version = "1.0.117", features = ["derive"] } compiled-stdlib = { path = "../../language/stdlib/compiled", version = "0.1.0" } -bcs = "0.1.1" +bcs = "0.1.2" move-core-types = { path = "../../language/move-core/types", version = "0.1.0" } diem-types = { path = "../../types", version = "0.1.0" } diem-workspace-hack = { path = "../../common/workspace-hack", version = "0.1.0" } diff --git a/common/bitvec/Cargo.toml b/common/bitvec/Cargo.toml index 3f12ded00c60..247c306978db 100644 --- a/common/bitvec/Cargo.toml +++ b/common/bitvec/Cargo.toml @@ -17,7 +17,7 @@ serde = { version = "1.0.117", features = ["derive"] } serde_bytes = "0.11.5" [dev-dependencies] -bcs = "0.1.1" +bcs = "0.1.2" diem-proptest-helpers = { path = "../proptest-helpers", version = "0.1.0"} proptest = { version = "0.10.1", default-features = true } proptest-derive = { version = "0.2.0" } diff --git a/config/Cargo.toml b/config/Cargo.toml index ab7fd1db13d8..d18659ea5d97 100644 --- a/config/Cargo.toml +++ b/config/Cargo.toml @@ -19,7 +19,7 @@ serde_yaml = "0.8.14" thiserror = "1.0.22" -bcs = "0.1.1" +bcs = "0.1.2" diem-crypto = { path = "../crypto/crypto", version = "0.1.0" } diem-crypto-derive = { path = "../crypto/crypto-derive", version = "0.1.0" } diem-global-constants = { path = "../config/global-constants", version = "0.1.0"} diff --git a/config/generate-key/Cargo.toml b/config/generate-key/Cargo.toml index b249d1b794bd..809b7b11f0b4 100644 --- a/config/generate-key/Cargo.toml +++ b/config/generate-key/Cargo.toml @@ -12,7 +12,7 @@ edition = "2018" [dependencies] rand = "0.7.3" -bcs = "0.1.1" +bcs = "0.1.2" diem-crypto = { path = "../../crypto/crypto/", version = "0.1.0"} diem-temppath = { path = "../../common/temppath", version = "0.1.0" } diem-workspace-hack = { path = "../../common/workspace-hack", version = "0.1.0" } diff --git a/config/management/Cargo.toml b/config/management/Cargo.toml index 450a5ef684d7..9cdfa57ece8a 100644 --- a/config/management/Cargo.toml +++ b/config/management/Cargo.toml @@ -18,7 +18,7 @@ structopt = "0.3.21" thiserror = "1.0.22" toml = { version = "0.5.7", default-features = false } -bcs = "0.1.1" +bcs = "0.1.2" diem-config = { path = "..", version = "0.1.0"} diem-crypto = { path = "../../crypto/crypto", version = "0.1.0" } diem-global-constants = { path = "../../config/global-constants", version = "0.1.0"} diff --git a/config/management/genesis/Cargo.toml b/config/management/genesis/Cargo.toml index b1797b874389..28375cd51f7c 100644 --- a/config/management/genesis/Cargo.toml +++ b/config/management/genesis/Cargo.toml @@ -20,7 +20,7 @@ toml = { version = "0.5.7", default-features = false } consensus-types = { path = "../../../consensus/consensus-types", version = "0.1.0" } executor = { path = "../../../execution/executor", version = "0.1.0" } generate-key = { path = "../../../config/generate-key", version = "0.1.0" } -bcs = "0.1.1" +bcs = "0.1.2" diem-config = { path = "../..", version = "0.1.0"} diem-crypto = { path = "../../../crypto/crypto", version = "0.1.0" } diem-global-constants = { path = "../../../config/global-constants", version = "0.1.0" } diff --git a/config/management/network-address-encryption/Cargo.toml b/config/management/network-address-encryption/Cargo.toml index f643ed557071..74d3981342ff 100644 --- a/config/management/network-address-encryption/Cargo.toml +++ b/config/management/network-address-encryption/Cargo.toml @@ -14,7 +14,7 @@ base64 = "0.13.0" serde = { version = "1.0.117", features = ["rc"], default-features = false } thiserror = "1.0.22" -bcs = "0.1.1" +bcs = "0.1.2" diem-global-constants = { path = "../../../config/global-constants", version = "0.1.0"} diem-infallible = { path = "../../../common/infallible", version = "0.1.0" } diem-logger = { path = "../../../common/logger", version = "0.1.0" } diff --git a/config/management/operational/Cargo.toml b/config/management/operational/Cargo.toml index 59801af734af..f83096042e42 100644 --- a/config/management/operational/Cargo.toml +++ b/config/management/operational/Cargo.toml @@ -18,7 +18,7 @@ structopt = "0.3.21" thiserror = "1.0.22" toml = { version = "0.5.7", default-features = false } -bcs = "0.1.1" +bcs = "0.1.2" diem-config = { path = "../..", version = "0.1.0"} diem-crypto = { path = "../../../crypto/crypto", version = "0.1.0" } diem-global-constants = { path = "../../../config/global-constants", version = "0.1.0" } diff --git a/config/seed-peer-generator/Cargo.toml b/config/seed-peer-generator/Cargo.toml index d63f83688fd4..27ade00c09f3 100644 --- a/config/seed-peer-generator/Cargo.toml +++ b/config/seed-peer-generator/Cargo.toml @@ -17,7 +17,7 @@ serde_yaml = "0.8.14" structopt = "0.3.21" thiserror = "1.0.22" -bcs = "0.1.1" +bcs = "0.1.2" diem-config = { path = "..", version = "0.1.0" } diem-crypto = { path = "../../crypto/crypto", version = "0.1.0" } diem-secure-json-rpc = { path = "../../secure/json-rpc", version = "0.1.0" } diff --git a/consensus/Cargo.toml b/consensus/Cargo.toml index d359dc0d2c26..601d1c92d719 100644 --- a/consensus/Cargo.toml +++ b/consensus/Cargo.toml @@ -34,7 +34,7 @@ consensus-types = { path = "consensus-types", version = "0.1.0", default-feature execution-correctness = { path = "../execution/execution-correctness", version = "0.1.0" } executor = { path = "../execution/executor", version = "0.1.0" } executor-types = { path = "../execution/executor-types", version = "0.1.0" } -bcs = "0.1.1" +bcs = "0.1.2" diem-config = { path = "../config", version = "0.1.0" } diem-crypto = { path = "../crypto/crypto", version = "0.1.0" } diem-logger = { path = "../common/logger", version = "0.1.0" } diff --git a/consensus/consensus-types/Cargo.toml b/consensus/consensus-types/Cargo.toml index d274ea60fccf..dc051b8f327b 100644 --- a/consensus/consensus-types/Cargo.toml +++ b/consensus/consensus-types/Cargo.toml @@ -13,7 +13,7 @@ proptest = { version = "0.10.1", optional = true } serde = { version = "1.0.117", default-features = false } executor-types = { path = "../../execution/executor-types", version = "0.1.0" } -bcs = "0.1.1" +bcs = "0.1.2" diem-crypto = { path = "../../crypto/crypto", version = "0.1.0" } diem-crypto-derive = { path = "../../crypto/crypto-derive", version = "0.1.0" } diem-infallible = { path = "../../common/infallible", version = "0.1.0" } diff --git a/consensus/safety-rules/Cargo.toml b/consensus/safety-rules/Cargo.toml index c891ac754234..ed196e04eb99 100644 --- a/consensus/safety-rules/Cargo.toml +++ b/consensus/safety-rules/Cargo.toml @@ -14,7 +14,7 @@ rand_core = "0.5.1" crash-handler = { path = "../../common/crash-handler", version = "0.1.0" } consensus-types = { path = "../consensus-types", version = "0.1.0" } -bcs = "0.1.1" +bcs = "0.1.2" diem-config = { path = "../../config", version = "0.1.0" } diem-crypto = { path = "../../crypto/crypto", version = "0.1.0" } diem-global-constants = { path = "../../config/global-constants", version = "0.1.0"} diff --git a/crypto/crypto/Cargo.toml b/crypto/crypto/Cargo.toml index 8e8af1ca73c6..34617658872f 100644 --- a/crypto/crypto/Cargo.toml +++ b/crypto/crypto/Cargo.toml @@ -37,7 +37,7 @@ vanilla-x25519-dalek = { version = "1.1.0", package = 'x25519-dalek', default-fe x25519-dalek = { git = "https://github.com/novifinancial/x25519-dalek.git", branch = "fiat4", version = "1.1.0", default-features = false, features = ["std", "fiat_u64_backend"], optional = true} aes-gcm = "0.8.0" diem-crypto-derive = { path = "../crypto-derive", version = "0.1.0" } -bcs = "0.1.1" +bcs = "0.1.2" diem-nibble = { path = "../../common/nibble", version = "0.1.0" } diem-workspace-hack = { path = "../../common/workspace-hack", version = "0.1.0" } diff --git a/execution/db-bootstrapper/Cargo.toml b/execution/db-bootstrapper/Cargo.toml index f08def2483db..923dac9bc93e 100644 --- a/execution/db-bootstrapper/Cargo.toml +++ b/execution/db-bootstrapper/Cargo.toml @@ -14,7 +14,7 @@ anyhow = "1.0.34" structopt = "0.3.21" executor = { path = "../executor", version = "0.1.0" } -bcs = "0.1.1" +bcs = "0.1.2" diemdb = { path = "../../storage/diemdb", version = "0.1.0" } diem-config = { path = "../../config", version = "0.1.0" } diem-crypto = { path = "../../crypto/crypto", version = "0.1.0" } diff --git a/execution/execution-correctness/Cargo.toml b/execution/execution-correctness/Cargo.toml index f55ae37fda2b..45f0b23d08e6 100644 --- a/execution/execution-correctness/Cargo.toml +++ b/execution/execution-correctness/Cargo.toml @@ -13,7 +13,7 @@ rand = { version = "0.7.3", default-features = false } consensus-types = { path = "../../consensus/consensus-types", version = "0.1.0", default-features = false } executor = { path = "../executor", version = "0.1.0" } executor-types = { path = "../executor-types", version = "0.1.0" } -bcs = "0.1.1" +bcs = "0.1.2" diem-config = { path = "../../config", version = "0.1.0" } diem-crypto = { path = "../../crypto/crypto", version = "0.1.0" } diem-global-constants = { path = "../../config/global-constants", version = "0.1.0"} diff --git a/execution/executor-types/Cargo.toml b/execution/executor-types/Cargo.toml index d309f55f767a..cc7d158c449b 100644 --- a/execution/executor-types/Cargo.toml +++ b/execution/executor-types/Cargo.toml @@ -14,7 +14,7 @@ anyhow = "1.0.34" serde = { version = "1.0.117", default-features = false } thiserror = "1.0.22" -bcs = "0.1.1" +bcs = "0.1.2" diem-crypto = { path = "../../crypto/crypto", version = "0.1.0" } diem-secure-net = { path = "../../secure/net", version = "0.1.0" } diem-types = { path = "../../types", version = "0.1.0" } diff --git a/execution/executor/Cargo.toml b/execution/executor/Cargo.toml index e7f980e3e2d5..3a3de8aba1e4 100644 --- a/execution/executor/Cargo.toml +++ b/execution/executor/Cargo.toml @@ -19,7 +19,7 @@ serde = { version = "1.0.117", features = ["derive"] } consensus-types = { path = "../../consensus/consensus-types", version = "0.1.0"} executor-types = { path = "../executor-types", version = "0.1.0" } -bcs = "0.1.1" +bcs = "0.1.2" diem-crypto = { path = "../../crypto/crypto", version = "0.1.0" } diem-logger = { path = "../../common/logger", version = "0.1.0" } diem-metrics = { path = "../../common/metrics", version = "0.1.0" } diff --git a/json-rpc/Cargo.toml b/json-rpc/Cargo.toml index 3e16b9d458cf..165d3fc9ff1b 100644 --- a/json-rpc/Cargo.toml +++ b/json-rpc/Cargo.toml @@ -24,7 +24,7 @@ warp = "0.2.5" reqwest = { version = "0.10.9", features = ["blocking", "json"], default_features = false, optional = true } proptest = { version = "0.10.1", optional = true } -bcs = "0.1.1" +bcs = "0.1.2" diem-config = { path = "../config", version = "0.1.0" } diem-crypto = { path = "../crypto/crypto", version = "0.1.0" } diemdb = { path = "../storage/diemdb", version = "0.1.0", optional = true } diff --git a/json-rpc/types/Cargo.toml b/json-rpc/types/Cargo.toml index cb78b3e6796c..f07fb86489e8 100644 --- a/json-rpc/types/Cargo.toml +++ b/json-rpc/types/Cargo.toml @@ -17,7 +17,7 @@ serde_json = "1.0.60" prost = "0.6.1" compiled-stdlib = { path = "../../language/stdlib/compiled", version = "0.1.0" } -bcs = "0.1.1" +bcs = "0.1.2" diem-types = { path = "../../types", version = "0.1.0" } diem-crypto = { path = "../../crypto/crypto", version = "0.1.0" } diem-workspace-hack = { path = "../../common/workspace-hack", version = "0.1.0" } diff --git a/language/compiler/Cargo.toml b/language/compiler/Cargo.toml index ecae6b5d955d..ff289098fbb7 100644 --- a/language/compiler/Cargo.toml +++ b/language/compiler/Cargo.toml @@ -19,7 +19,7 @@ diem-types = { path = "../../types", version = "0.1.0" } diem-workspace-hack = { path = "../../common/workspace-hack", version = "0.1.0" } move-ir-types = { path = "../move-ir/types", version = "0.1.0" } vm = { path = "../vm", version = "0.1.0" } -bcs = "0.1.1" +bcs = "0.1.2" structopt = "0.3.21" serde_json = "1.0.60" diff --git a/language/compiler/bytecode-source-map/Cargo.toml b/language/compiler/bytecode-source-map/Cargo.toml index a69c84c3265f..9a0dae67d6d2 100644 --- a/language/compiler/bytecode-source-map/Cargo.toml +++ b/language/compiler/bytecode-source-map/Cargo.toml @@ -13,7 +13,7 @@ diem-workspace-hack = { path = "../../../common/workspace-hack", version = "0.1. move-core-types = { path = "../../move-core/types", version = "0.1.0" } move-ir-types = { path = "../../move-ir/types", version = "0.1.0" } vm = { path = "../../vm", version = "0.1.0" } -bcs = "0.1.1" +bcs = "0.1.2" codespan = "0.8.0" codespan-reporting = "0.8.0" serde = { version = "1.0.117", default-features = false } diff --git a/language/diem-tools/diem-events-fetcher/Cargo.toml b/language/diem-tools/diem-events-fetcher/Cargo.toml index 83792e703499..bb0cc8e25002 100644 --- a/language/diem-tools/diem-events-fetcher/Cargo.toml +++ b/language/diem-tools/diem-events-fetcher/Cargo.toml @@ -22,4 +22,4 @@ tokio = { version = "0.2.22", features = ["full"] } diem-workspace-hack = { path = "../../../common/workspace-hack", version = "0.1.0" } diem-json-rpc-client = { path = "../../../client/json-rpc", version = "0.1.0" } diem-types = { path = "../../../types", version = "0.1.0" } -bcs = "0.1.1" +bcs = "0.1.2" diff --git a/language/diem-tools/diem-validator-interface/Cargo.toml b/language/diem-tools/diem-validator-interface/Cargo.toml index a076e3d6df6a..330f0effa294 100644 --- a/language/diem-tools/diem-validator-interface/Cargo.toml +++ b/language/diem-tools/diem-validator-interface/Cargo.toml @@ -22,4 +22,4 @@ diem-workspace-hack = { path = "../../../common/workspace-hack", version = "0.1. storage-interface = { path = "../../../storage/storage-interface", version = "0.1.0" } scratchpad = { path = "../../../storage/scratchpad", version = "0.1.0" } diem-state-view = { path = "../../../storage/state-view", version = "0.1.0" } -bcs = "0.1.1" +bcs = "0.1.2" diff --git a/language/diem-tools/transaction-replay/Cargo.toml b/language/diem-tools/transaction-replay/Cargo.toml index 21f13866fcc1..f8ec5907601c 100644 --- a/language/diem-tools/transaction-replay/Cargo.toml +++ b/language/diem-tools/transaction-replay/Cargo.toml @@ -26,7 +26,7 @@ move-vm-test-utils = { path = "../../move-vm/test-utils", version = "0.1.0" } resource-viewer = { path = "../../tools/resource-viewer", version = "0.1.0" } stdlib = { path = "../../stdlib", version = "0.1.0" } move-lang = { path = "../../move-lang", version = "0.0.1" } -bcs = "0.1.1" +bcs = "0.1.2" difference = "2.0.0" [dev-dependencies] diff --git a/language/diem-tools/writeset-transaction-generator/Cargo.toml b/language/diem-tools/writeset-transaction-generator/Cargo.toml index 8ca3906614a6..0a73eff22f6d 100644 --- a/language/diem-tools/writeset-transaction-generator/Cargo.toml +++ b/language/diem-tools/writeset-transaction-generator/Cargo.toml @@ -25,7 +25,7 @@ diem-types = { path = "../../../types", version = "0.1.0" } compiled-stdlib = { path = "../../stdlib/compiled", version = "0.1.0" } stdlib = { path = "../../stdlib", version = "0.1.0" } move-lang = { path = "../../move-lang", version = "0.0.1" } -bcs = "0.1.1" +bcs = "0.1.2" diem-state-view = { path = "../../../storage/state-view", version = "0.1.0" } diem-validator-interface = { path = "../diem-validator-interface", version = "0.1.0" } diemdb = { path = "../../../storage/diemdb", version = "0.1.0" } diff --git a/language/diem-vm/Cargo.toml b/language/diem-vm/Cargo.toml index 4cb3e713877d..51db51e1ccaf 100644 --- a/language/diem-vm/Cargo.toml +++ b/language/diem-vm/Cargo.toml @@ -16,7 +16,7 @@ once_cell = "1.4.1" rayon = "1.5.0" mirai-annotations = "1.10.1" -bcs = "0.1.1" +bcs = "0.1.2" diem-crypto = { path = "../../crypto/crypto", version = "0.1.0" } diem-logger = { path = "../../common/logger", version = "0.1.0" } diem-metrics = { path = "../../common/metrics", version = "0.1.0" } diff --git a/language/e2e-testsuite/Cargo.toml b/language/e2e-testsuite/Cargo.toml index d5ab8bf7b316..c8ef90a8b683 100644 --- a/language/e2e-testsuite/Cargo.toml +++ b/language/e2e-testsuite/Cargo.toml @@ -13,7 +13,7 @@ publish = false serde_json = "1.0.60" language-e2e-tests = { path = "../testing-infra/e2e-tests", version = "0.1.0" } bytecode-verifier = { path = "../bytecode-verifier", version = "0.1.0" } -bcs = "0.1.1" +bcs = "0.1.2" compiler = { path = "../compiler", version = "0.1.0" } diem-crypto = { path = "../../crypto/crypto", version = "0.1.0", features = ["fuzzing"] } diem-types = { path = "../../types", version = "0.1.0", features = ["fuzzing"] } diff --git a/language/move-core/types/Cargo.toml b/language/move-core/types/Cargo.toml index 1b201e55a1ac..157bad26e7b9 100644 --- a/language/move-core/types/Cargo.toml +++ b/language/move-core/types/Cargo.toml @@ -23,7 +23,7 @@ static_assertions = "1.1.0" thiserror = "1.0.22" once_cell = "1.4.1" -bcs = "0.1.1" +bcs = "0.1.2" diem-workspace-hack = { path = "../../../common/workspace-hack", version = "0.1.0" } diem-crypto = { path = "../../../crypto/crypto", version = "0.1.0", default-features = false } diem-crypto-derive = { path = "../../../crypto/crypto-derive", version = "0.1.0" } diff --git a/language/move-lang/Cargo.toml b/language/move-lang/Cargo.toml index 59a9b69b3bd1..d01c95884508 100644 --- a/language/move-lang/Cargo.toml +++ b/language/move-lang/Cargo.toml @@ -27,7 +27,7 @@ move-ir-types = {path = "../move-ir/types" } ir-to-bytecode = {path = "../compiler/ir-to-bytecode" } borrow-graph = { path = "../borrow-graph" } bytecode-source-map = { path = "../compiler/bytecode-source-map" } -bcs = "0.1.1" +bcs = "0.1.2" [dev-dependencies] move-lang-test-utils = { path = "test-utils" } diff --git a/language/move-prover/abigen/Cargo.toml b/language/move-prover/abigen/Cargo.toml index 095aca10aaa9..2d48554f63cd 100644 --- a/language/move-prover/abigen/Cargo.toml +++ b/language/move-prover/abigen/Cargo.toml @@ -12,7 +12,7 @@ spec-lang = { path = "../spec-lang", version = "0.1.0" } diem-workspace-hack = { path = "../../../common/workspace-hack", version = "0.1.0" } diem-types = { path = "../../../types", version = "0.1.0" } move-core-types = { path = "../../move-core/types", version = "0.1.0" } -bcs = "0.1.1" +bcs = "0.1.2" # external dependencies log = "0.4.11" diff --git a/language/move-prover/errmapgen/Cargo.toml b/language/move-prover/errmapgen/Cargo.toml index abc9918b3dbc..feebf8deb805 100644 --- a/language/move-prover/errmapgen/Cargo.toml +++ b/language/move-prover/errmapgen/Cargo.toml @@ -12,7 +12,7 @@ spec-lang = { path = "../spec-lang", version = "0.1.0" } diem-workspace-hack = { path = "../../../common/workspace-hack", version = "0.1.0" } diem-types = { path = "../../../types", version = "0.1.0" } move-core-types = { path = "../../move-core/types", version = "0.1.0" } -bcs = "0.1.1" +bcs = "0.1.2" # external dependencies log = "0.4.11" diff --git a/language/move-vm/types/Cargo.toml b/language/move-vm/types/Cargo.toml index 4fd44767701f..3d38575df9e5 100644 --- a/language/move-vm/types/Cargo.toml +++ b/language/move-vm/types/Cargo.toml @@ -16,7 +16,7 @@ proptest = { version = "0.10.1", optional = true } sha2 = "0.9.2" serde = { version = "1.0.117", features = ["derive", "rc"] } -bcs = "0.1.1" +bcs = "0.1.2" diem-crypto = { path = "../../../crypto/crypto", version = "0.1.0"} diem-workspace-hack = { path = "../../../common/workspace-hack", version = "0.1.0" } move-core-types = { path = "../../move-core/types", version = "0.1.0" } diff --git a/language/stdlib/Cargo.toml b/language/stdlib/Cargo.toml index c9af2e9e6275..0cda5c98416b 100644 --- a/language/stdlib/Cargo.toml +++ b/language/stdlib/Cargo.toml @@ -17,7 +17,7 @@ move-prover = { path = "../move-prover" } diem-crypto = { path = "../../crypto/crypto", version = "0.1.0" } diem-types = { path = "../../types", version = "0.1.0" } diem-workspace-hack = { path = "../../common/workspace-hack", version = "0.1.0" } -bcs = "0.1.1" +bcs = "0.1.2" vm = { path = "../vm", version = "0.1.0" } transaction-builder-generator = { path = "../transaction-builder/generator", version = "0.1.0" } diff --git a/language/stdlib/compiled/Cargo.toml b/language/stdlib/compiled/Cargo.toml index 568c7981e241..43fb5068d71d 100644 --- a/language/stdlib/compiled/Cargo.toml +++ b/language/stdlib/compiled/Cargo.toml @@ -15,7 +15,7 @@ bytecode-verifier = { path = "../../bytecode-verifier", version = "0.1.0" } diem-crypto = { path = "../../../crypto/crypto", version = "0.1.0" } diem-types = { path = "../../../types", version = "0.1.0" } diem-workspace-hack = { path = "../../../common/workspace-hack", version = "0.1.0" } -bcs = "0.1.1" +bcs = "0.1.2" vm = { path = "../../vm", version = "0.1.0" } stdlib = { path = "../../stdlib", version = "0.1.0" } once_cell = "1.4.1" diff --git a/language/testing-infra/e2e-tests/Cargo.toml b/language/testing-infra/e2e-tests/Cargo.toml index 3989922df53d..5da488545f61 100644 --- a/language/testing-infra/e2e-tests/Cargo.toml +++ b/language/testing-infra/e2e-tests/Cargo.toml @@ -12,7 +12,7 @@ publish = false [dependencies] anyhow = "1.0.34" goldenfile = "1.1.0" -bcs = "0.1.1" +bcs = "0.1.2" compiler = { path = "../../compiler", version = "0.1.0" } once_cell = "1.4.1" diem-crypto = { path = "../../../crypto/crypto", version = "0.1.0", features = ["fuzzing"] } diff --git a/language/tools/genesis-viewer/Cargo.toml b/language/tools/genesis-viewer/Cargo.toml index 6dcce1a5af3c..549a0886ba19 100644 --- a/language/tools/genesis-viewer/Cargo.toml +++ b/language/tools/genesis-viewer/Cargo.toml @@ -10,7 +10,7 @@ publish = false edition = "2018" [dependencies] -bcs = "0.1.1" +bcs = "0.1.2" diem-types = { path = "../../../types", version = "0.1.0" } diem-workspace-hack = { path = "../../../common/workspace-hack", version = "0.1.0" } vm = { path = "../../vm", version = "0.1.0" } diff --git a/language/tools/move-cli/Cargo.toml b/language/tools/move-cli/Cargo.toml index 3dc83c476619..7ac14ca3f50a 100644 --- a/language/tools/move-cli/Cargo.toml +++ b/language/tools/move-cli/Cargo.toml @@ -32,7 +32,7 @@ resource-viewer = { path = "../resource-viewer", version = "0.1.0" } stdlib = { path = "../../stdlib", version = "0.1.0" } vm = { path = "../../vm", version = "0.1.0" } vm-genesis = { path = "../vm-genesis", version = "0.1.0" } -bcs = "0.1.1" +bcs = "0.1.2" [dev-dependencies] datatest-stable = { path = "../../../common/datatest-stable", version = "0.1.0" } diff --git a/language/tools/move-coverage/Cargo.toml b/language/tools/move-coverage/Cargo.toml index cd3014b29f5b..a21904462493 100644 --- a/language/tools/move-coverage/Cargo.toml +++ b/language/tools/move-coverage/Cargo.toml @@ -18,7 +18,7 @@ anyhow = "1.0.34" codespan = { version = "0.8.0", features = ["serialization"] } colored = "2.0.0" -bcs = "0.1.1" +bcs = "0.1.2" diem-types = { path = "../../../types", version = "0.1.0" } move-core-types = { path = "../../move-core/types", version = "0.1.0" } move-ir-types = { path = "../../move-ir/types", version = "0.1.0" } diff --git a/language/tools/move-explain/Cargo.toml b/language/tools/move-explain/Cargo.toml index f4a72a77d4f6..9b95e4809816 100644 --- a/language/tools/move-explain/Cargo.toml +++ b/language/tools/move-explain/Cargo.toml @@ -15,7 +15,7 @@ compiled-stdlib = { path = "../../stdlib/compiled", version = "0.1.0" } diem-workspace-hack = { path = "../../../common/workspace-hack", version = "0.1.0" } errmapgen = { path = "../../move-prover/errmapgen", version = "0.1.0" } move-core-types = { path = "../../move-core/types", version = "0.1.0" } -bcs = "0.1.1" +bcs = "0.1.2" [features] default = [] diff --git a/language/tools/resource-viewer/Cargo.toml b/language/tools/resource-viewer/Cargo.toml index 94ec4cb6419f..dc4329fdd83c 100644 --- a/language/tools/resource-viewer/Cargo.toml +++ b/language/tools/resource-viewer/Cargo.toml @@ -10,7 +10,7 @@ publish = false edition = "2018" [dependencies] -bcs = "0.1.1" +bcs = "0.1.2" diem-state-view = { path = "../../../storage/state-view", version = "0.1.0" } diem-types = { path = "../../../types", version = "0.1.0" } diem-workspace-hack = { path = "../../../common/workspace-hack", version = "0.1.0" } diff --git a/language/tools/vm-genesis/Cargo.toml b/language/tools/vm-genesis/Cargo.toml index 2987b667d89c..7adaff17c4be 100644 --- a/language/tools/vm-genesis/Cargo.toml +++ b/language/tools/vm-genesis/Cargo.toml @@ -15,7 +15,7 @@ once_cell = "1.4.1" rand = "0.7.3" bytecode-verifier = { path = "../../bytecode-verifier", version = "0.1.0" } -bcs = "0.1.1" +bcs = "0.1.2" diem-config = { path = "../../../config", version = "0.1.0" } diem-crypto = { path = "../../../crypto/crypto", version = "0.1.0" } diem-state-view = { path = "../../../storage/state-view", version = "0.1.0" } diff --git a/language/transaction-builder/generator/Cargo.toml b/language/transaction-builder/generator/Cargo.toml index 79e3f3e2db39..9771202e9180 100644 --- a/language/transaction-builder/generator/Cargo.toml +++ b/language/transaction-builder/generator/Cargo.toml @@ -21,7 +21,7 @@ serde_yaml = "0.8.14" diem-types = { path = "../../../types", version = "0.1.0" } diem-workspace-hack = { path = "../../../common/workspace-hack", version = "0.1.0" } move-core-types = { path = "../../move-core/types", version = "0.1.0" } -bcs = "0.1.1" +bcs = "0.1.2" [dev-dependencies] tempfile = "3.1.0" diff --git a/mempool/Cargo.toml b/mempool/Cargo.toml index b5576b216bcb..747fb483dbf2 100644 --- a/mempool/Cargo.toml +++ b/mempool/Cargo.toml @@ -22,7 +22,7 @@ tokio = { version = "0.2.22", features = ["full"] } bounded-executor = { path = "../common/bounded-executor", version = "0.1.0" } channel = { path = "../common/channel", version = "0.1.0" } -bcs = "0.1.1" +bcs = "0.1.2" diem-config = { path = "../config", version = "0.1.0" } diem-crypto = { path = "../crypto/crypto", version = "0.1.0" } diem-logger = { path = "../common/logger", version = "0.1.0" } diff --git a/network/Cargo.toml b/network/Cargo.toml index 1e8922225ce8..5d6883527cad 100644 --- a/network/Cargo.toml +++ b/network/Cargo.toml @@ -30,7 +30,7 @@ tokio-util = { version = "0.3.1", features = ["codec"] } bitvec = { path = "../common/bitvec", version = "0.1.0", package = "diem-bitvec" } channel = { path = "../common/channel", version = "0.1.0" } -bcs = "0.1.1" +bcs = "0.1.2" diem-config = { path = "../config", version = "0.1.0" } diem-crypto = { path = "../crypto/crypto", version = "0.1.0" } diem-crypto-derive = { path = "../crypto/crypto-derive", version = "0.1.0" } diff --git a/network/builder/Cargo.toml b/network/builder/Cargo.toml index c3b102946578..295c386fcb07 100644 --- a/network/builder/Cargo.toml +++ b/network/builder/Cargo.toml @@ -20,7 +20,7 @@ tokio-retry = "0.2.0" channel = { path = "../../common/channel", version = "0.1.0" } -bcs = "0.1.1" +bcs = "0.1.2" diem-config = { path = "../../config", version = "0.1.0" } diem-crypto = { path = "../../crypto/crypto", version = "0.1.0" } diem-infallible = { path = "../../common/infallible", version = "0.1.0" } diff --git a/network/network-address/Cargo.toml b/network/network-address/Cargo.toml index 68b1f9e4a64a..c8175b4d5b37 100644 --- a/network/network-address/Cargo.toml +++ b/network/network-address/Cargo.toml @@ -18,7 +18,7 @@ serde_bytes = "0.11.5" static_assertions = "1.1.0" thiserror = "1.0.22" -bcs = "0.1.1" +bcs = "0.1.2" diem-crypto = { path = "../../crypto/crypto", version = "0.1.0" } diem-workspace-hack = { path = "../../common/workspace-hack", version = "0.1.0" } move-core-types = { path = "../../language/move-core/types", version = "0.1.0" } diff --git a/network/simple-onchain-discovery/Cargo.toml b/network/simple-onchain-discovery/Cargo.toml index ab7fc52e56c8..4c5589a2aa2a 100644 --- a/network/simple-onchain-discovery/Cargo.toml +++ b/network/simple-onchain-discovery/Cargo.toml @@ -16,7 +16,7 @@ once_cell = "1.4.1" tokio = { version = "0.2.22", features = ["full"] } channel = {path = "../../common/channel", version = "0.1.0"} -bcs = "0.1.1" +bcs = "0.1.2" diem-config = { path = "../../config", version = "0.1.0"} diem-crypto = {path = "../../crypto/crypto", version = "0.1.0"} diem-logger = {path = "../../common/logger", version = "0.1.0"} diff --git a/secure/json-rpc/Cargo.toml b/secure/json-rpc/Cargo.toml index 5ea261ac8259..a49cbdc176ee 100644 --- a/secure/json-rpc/Cargo.toml +++ b/secure/json-rpc/Cargo.toml @@ -17,7 +17,7 @@ serde_json = "1.0.60" thiserror = "1.0.22" ureq = { version = "1.5.4", features = ["json", "native-tls"], default-features = false } -bcs = "0.1.1" +bcs = "0.1.2" diem-crypto = { path = "../../crypto/crypto", version = "0.1.0" } diem-proptest-helpers = { path = "../../common/proptest-helpers", version = "0.1.0", optional = true } diem-types = { path = "../../types", version = "0.1.0" } diff --git a/secure/storage/Cargo.toml b/secure/storage/Cargo.toml index 61473e1d51a0..ae4993b215b3 100644 --- a/secure/storage/Cargo.toml +++ b/secure/storage/Cargo.toml @@ -18,7 +18,7 @@ serde = { version = "1.0.117", features = ["rc"], default-features = false } serde_json = "1.0.60" thiserror = "1.0.22" -bcs = "0.1.1" +bcs = "0.1.2" diem-crypto = { path = "../../crypto/crypto", version = "0.1.0" } diem-github-client = { path = "github", version = "0.1.0" } diem-infallible = { path = "../../common/infallible", version = "0.1.0" } diff --git a/state-synchronizer/Cargo.toml b/state-synchronizer/Cargo.toml index 4d312257427d..0819a0750612 100644 --- a/state-synchronizer/Cargo.toml +++ b/state-synchronizer/Cargo.toml @@ -39,7 +39,7 @@ network = { path = "../network", version = "0.1.0" } storage-interface = { path = "../storage/storage-interface", version = "0.1.0" } subscription-service = { path = "../common/subscription-service", version = "0.1.0" } diem-vm = { path = "../language/diem-vm", version = "0.1.0" } -bcs = "0.1.1" +bcs = "0.1.2" vm-genesis = { path = "../language/tools/vm-genesis", version = "0.1.0", optional = true } [dev-dependencies] diff --git a/storage/backup/backup-cli/Cargo.toml b/storage/backup/backup-cli/Cargo.toml index 0881f975ca99..034158e4f496 100644 --- a/storage/backup/backup-cli/Cargo.toml +++ b/storage/backup/backup-cli/Cargo.toml @@ -33,7 +33,7 @@ executor = { path = "../../../execution/executor", version = "0.1.0" } executor-test-helpers = { path = "../../../execution/executor-test-helpers", version = "0.1.0", optional = true } executor-types = { path = "../../../execution/executor-types", version = "0.1.0" } diem-jellyfish-merkle = { path = "../../jellyfish-merkle", version = "0.1.0" } -bcs = "0.1.1" +bcs = "0.1.2" diem-config = { path = "../../../config", version = "0.1.0" } diem-crypto = { path = "../../../crypto/crypto", version = "0.1.0" } diem-infallible = { path = "../../../common/infallible", version = "0.1.0" } diff --git a/storage/backup/backup-service/Cargo.toml b/storage/backup/backup-service/Cargo.toml index 0ef45910d40d..f1f758d22f2d 100644 --- a/storage/backup/backup-service/Cargo.toml +++ b/storage/backup/backup-service/Cargo.toml @@ -18,7 +18,7 @@ serde = { version = "1.0.117", default-features = false } tokio = { version = "0.2.22", features = ["full"] } warp = "0.2.5" -bcs = "0.1.1" +bcs = "0.1.2" diem-crypto = { path = "../../../crypto/crypto", version = "0.1.0" } diem-logger = { path = "../../../common/logger", version = "0.1.0" } diem-metrics = { path = "../../../common/metrics", version = "0.1.0" } diff --git a/storage/diemdb/Cargo.toml b/storage/diemdb/Cargo.toml index 55c9b2e560e1..8184fc5b4b10 100644 --- a/storage/diemdb/Cargo.toml +++ b/storage/diemdb/Cargo.toml @@ -23,7 +23,7 @@ serde = "1.0.117" thiserror = "1.0.22" accumulator = { path = "../accumulator", version = "0.1.0" } -bcs = "0.1.1" +bcs = "0.1.2" diem-config = { path = "../../config", version = "0.1.0" } diem-crypto = { path = "../../crypto/crypto", version = "0.1.0" } diem-jellyfish-merkle = { path = "../jellyfish-merkle", version = "0.1.0" } diff --git a/storage/jellyfish-merkle/Cargo.toml b/storage/jellyfish-merkle/Cargo.toml index 869ed3627ef3..c8d33b328972 100644 --- a/storage/jellyfish-merkle/Cargo.toml +++ b/storage/jellyfish-merkle/Cargo.toml @@ -21,7 +21,7 @@ rand = {version = "0.7.3", optional = true } serde = { version = "1.0.117", features = ["derive"] } thiserror = "1.0.22" -bcs = "0.1.1" +bcs = "0.1.2" diem-crypto = { path = "../../crypto/crypto", version = "0.1.0" } diem-crypto-derive = { path = "../../crypto/crypto-derive", version = "0.1.0" } diem-infallible = { path = "../../common/infallible", version = "0.1.0" } diff --git a/storage/storage-client/Cargo.toml b/storage/storage-client/Cargo.toml index 42c300601eb7..0888e42bdedf 100644 --- a/storage/storage-client/Cargo.toml +++ b/storage/storage-client/Cargo.toml @@ -13,7 +13,7 @@ edition = "2018" anyhow = "1.0.34" serde = "1.0.117" -bcs = "0.1.1" +bcs = "0.1.2" diem-crypto = { path = "../../crypto/crypto", version = "0.1.0" } diem-logger = { path = "../../common/logger", version = "0.1.0" } diem-infallible = { path = "../../common/infallible", version = "0.1.0" } diff --git a/storage/storage-interface/Cargo.toml b/storage/storage-interface/Cargo.toml index dac0120abf97..d09bf3c1be15 100644 --- a/storage/storage-interface/Cargo.toml +++ b/storage/storage-interface/Cargo.toml @@ -15,7 +15,7 @@ itertools = "0.9.0" serde = { version = "1.0.117", default-features = false } thiserror = "1.0.22" -bcs = "0.1.1" +bcs = "0.1.2" diem-crypto = { path = "../../crypto/crypto", version = "0.1.0" } diem-secure-net = { path = "../../secure/net", version = "0.1.0" } diem-state-view = { path = "../../storage/state-view", version = "0.1.0" } diff --git a/storage/storage-service/Cargo.toml b/storage/storage-service/Cargo.toml index 6e3fed197739..b46f0cec3b78 100644 --- a/storage/storage-service/Cargo.toml +++ b/storage/storage-service/Cargo.toml @@ -14,7 +14,7 @@ anyhow = "1.0.34" tokio = { version = "0.2.22", features = ["full"] } futures = "0.3.8" -bcs = "0.1.1" +bcs = "0.1.2" diem-config = { path = "../../config", version = "0.1.0" } diem-crypto = { path = "../../crypto/crypto", version = "0.1.0" } diemdb = { path = "../diemdb", version = "0.1.0" } diff --git a/testsuite/cli/Cargo.toml b/testsuite/cli/Cargo.toml index a014b50148ec..8e44c9b466fc 100644 --- a/testsuite/cli/Cargo.toml +++ b/testsuite/cli/Cargo.toml @@ -28,7 +28,7 @@ diem-config = { path = "../../config", version = "0.1.0" } generate-key = { path = "../../config/generate-key", version = "0.1.0" } crash-handler = { path = "../../common/crash-handler", version = "0.1.0" } diem-crypto = { path = "../../crypto/crypto", version = "0.1.0" } -bcs = "0.1.1" +bcs = "0.1.2" diem-wallet = { path = "diem-wallet", version = "0.1.0" } diem-json-rpc-client = { path = "../../client/json-rpc", version = "0.1.0" } diem-infallible = { path = "../../common/infallible", version = "0.1.0" } diff --git a/testsuite/cluster-test/Cargo.toml b/testsuite/cluster-test/Cargo.toml index 342510e5a2f9..0a6a88bbf1fe 100644 --- a/testsuite/cluster-test/Cargo.toml +++ b/testsuite/cluster-test/Cargo.toml @@ -37,7 +37,7 @@ num_cpus = "1.13.0" consensus-types = { path = "../../consensus/consensus-types", version = "0.1.0" } generate-key = { path = "../../config/generate-key", version = "0.1.0" } -bcs = "0.1.1" +bcs = "0.1.2" diem-crypto = { path = "../../crypto/crypto", version = "0.1.0" } diem-config = { path = "../../config", version = "0.1.0" } diem-genesis-tool = { path = "../../config/management/genesis", version = "0.1.0", features = ["testing"] } diff --git a/testsuite/diem-fuzzer/Cargo.toml b/testsuite/diem-fuzzer/Cargo.toml index 56c672450f07..ce2a03ee11f2 100644 --- a/testsuite/diem-fuzzer/Cargo.toml +++ b/testsuite/diem-fuzzer/Cargo.toml @@ -23,7 +23,7 @@ structopt = "0.3.21" rand = "0.7.3" ureq = { version = "1.5.4", features = ["json", "native-tls"], default-features = false } -bcs = "0.1.1" +bcs = "0.1.2" diem-proptest-helpers = { path = "../../common/proptest-helpers", version = "0.1.0" } diem-workspace-hack = { path = "../../common/workspace-hack", version = "0.1.0" } diff --git a/testsuite/generate-format/Cargo.toml b/testsuite/generate-format/Cargo.toml index c2ce0150e265..dee932e65a55 100644 --- a/testsuite/generate-format/Cargo.toml +++ b/testsuite/generate-format/Cargo.toml @@ -18,7 +18,7 @@ structopt = "0.3.21" consensus = { path = "../../consensus", version = "0.1.0", features=["fuzzing"] } consensus-types = { path = "../../consensus/consensus-types", version = "0.1.0", features=["fuzzing"] } -bcs = "0.1.1" +bcs = "0.1.2" diem-config = { path = "../../config", version = "0.1.0" } diem-crypto = { path = "../../crypto/crypto", version = "0.1.0", features=["fuzzing"] } diem-crypto-derive = { path = "../../crypto/crypto-derive", version = "0.1.0"} diff --git a/testsuite/smoke-test/Cargo.toml b/testsuite/smoke-test/Cargo.toml index 23467d3ef7ab..9aa399420fbc 100644 --- a/testsuite/smoke-test/Cargo.toml +++ b/testsuite/smoke-test/Cargo.toml @@ -26,7 +26,7 @@ backup-cli = { path = "../../storage/backup/backup-cli", version = "0.1.0" } cli = { path = "../cli", version = "0.1.0", features = ["fuzzing"] } debug-interface = { path = "../../common/debug-interface", version = "0.1.0" } generate-key = { path = "../../config/generate-key", version = "0.1.0" } -bcs = "0.1.1" +bcs = "0.1.2" diem-config = { path = "../../config", version = "0.1.0" } diem-crypto = { path = "../../crypto/crypto", version = "0.1.0" } diem-genesis-tool = {path = "../../config/management/genesis", version = "0.1.0", features = ["testing"] } diff --git a/types/Cargo.toml b/types/Cargo.toml index adb6d192ea3c..783fce8f2c30 100644 --- a/types/Cargo.toml +++ b/types/Cargo.toml @@ -26,7 +26,7 @@ serde_bytes = "0.11.5" thiserror = "1.0.22" tiny-keccak = { version = "2.0.2", default-features = false, features = ["sha3"] } -bcs = "0.1.1" +bcs = "0.1.2" diem-crypto = { path = "../crypto/crypto", version = "0.1.0" } diem-crypto-derive = { path = "../crypto/crypto-derive", version = "0.1.0" } diem-infallible = { path = "../common/infallible", version = "0.1.0" }