diff --git a/lib.rs/integration-tests/Cargo.lock b/lib.rs/integration-tests/Cargo.lock index d6c6fb41..491fc60b 100644 --- a/lib.rs/integration-tests/Cargo.lock +++ b/lib.rs/integration-tests/Cargo.lock @@ -303,6 +303,15 @@ dependencies = [ "hashbrown 0.11.2", ] +[[package]] +name = "borsh" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4e6cb63579996213e822f6d828b0a47e1d23b1e8708f52d18a6b1af5670dd207" +dependencies = [ + "cfg_aliases", +] + [[package]] name = "borsh-derive" version = "0.9.3" @@ -414,6 +423,12 @@ version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" +[[package]] +name = "cfg_aliases" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e" + [[package]] name = "chrono" version = "0.4.31" @@ -1111,7 +1126,7 @@ name = "integration-tests" version = "1.0.0" dependencies = [ "anyhow", - "borsh", + "borsh 1.0.0", "maplit", "near-units", "pkg-config", @@ -1286,7 +1301,7 @@ version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1d924011380de759c3dc6fdbcda37a19a5c061f56dab69d28a34ecee765e23e4" dependencies = [ - "borsh", + "borsh 0.9.3", "serde", ] @@ -1317,7 +1332,7 @@ checksum = "7754612b47737d277fb818e9fdbb1406e90f9e57151c55c3584d714421976cb6" dependencies = [ "arrayref", "blake2", - "borsh", + "borsh 0.9.3", "bs58", "c2-chacha", "curve25519-dalek", @@ -1340,7 +1355,7 @@ version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d1335ffce1476da6516dcd22b26cece1a495fc725c0e8fec1879073752ac068d" dependencies = [ - "borsh", + "borsh 0.9.3", "lazy_static", "log", "near-chain-configs", @@ -1375,7 +1390,7 @@ version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "97670b302dce15f09bba50f24c67aa08130fd01528cc61d4415892401e88e974" dependencies = [ - "borsh", + "borsh 0.9.3", "byteorder", "bytesize", "cfg-if", @@ -1406,7 +1421,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7929e19d862221949734c4a0063a8f55e7069de3a2ebc2d4f4c13497a5e953cb" dependencies = [ "base64 0.13.1", - "borsh", + "borsh 0.9.3", "bs58", "derive_more", "near-account-id", @@ -1492,7 +1507,7 @@ version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5591c9c8afa83a040cb5c3f29bc52b2efae2c32d4bcaee1bba723738da1a5cf6" dependencies = [ - "borsh", + "borsh 0.9.3", "near-account-id", "near-rpc-error-macro", "serde", @@ -2890,7 +2905,7 @@ dependencies = [ "async-process", "async-trait", "base64 0.13.1", - "borsh", + "borsh 0.9.3", "bs58", "chrono", "dirs 3.0.2", diff --git a/lib.rs/integration-tests/Cargo.toml b/lib.rs/integration-tests/Cargo.toml index bc36ff43..1ab895c3 100644 --- a/lib.rs/integration-tests/Cargo.toml +++ b/lib.rs/integration-tests/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dev-dependencies] anyhow = "1.0" -borsh = "0.9" +borsh = "1.0" maplit = "1.0" near-units = "0.2.0" # arbitrary_precision enabled for u128 types that workspaces requires for Balance types