Skip to content
This repository has been archived by the owner on Jul 27, 2022. It is now read-only.

Bump parity-scale-codec from 1.3.6 to 2.0.0 #2473

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 31 additions & 11 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion chain-abci/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ protobuf = "2.16.2"
integer-encoding = "3.0.1"
structopt = "0.3"
secp256k1 = { git = "https://github.com/crypto-com/rust-secp256k1-zkp.git", rev = "1aae6edc5f1de0bbdcdb26f1f1d8b00ca28e012a", features = ["recovery", "endomorphism", "global-context"] }
parity-scale-codec = { features = ["derive"], version = "1.3" }
parity-scale-codec = { features = ["derive"], version = "2.0" }
thiserror = "1.0"
kvdb = "0.7"
itertools = "0.10"
Expand Down
2 changes: 1 addition & 1 deletion chain-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ hex = { version = "0.4", optional = true }
secp256k1 = { git = "https://github.com/crypto-com/rust-secp256k1-zkp.git", default-features = false, rev = "1aae6edc5f1de0bbdcdb26f1f1d8b00ca28e012a", features = ["recovery", "endomorphism", "schnorrsig", "global-context"] }
serde = { version = "1.0", features = ["derive"], optional = true }
blake3 = { version = "0.3.7", default-features = false }
parity-scale-codec = { features = ["derive"], version = "1.3" }
parity-scale-codec = { features = ["derive"], version = "2.0" }
base64 = { version = "0.13", optional = true }
static_assertions = { version = "1.1.0", default-features = false}
bech32 = { version = "0.7.2", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion chain-storage/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ kvdb-rocksdb = { version = "0.9", optional = true }
kvdb-memorydb = "0.7"
chain-core = { path = "../chain-core" }
bit-vec = { version = "0.6.3", features = ["serde_no_std"] }
parity-scale-codec = { features = ["derive"], version = "1.3" }
parity-scale-codec = { features = ["derive"], version = "2.0" }
integer-encoding = "3.0.1"
anyhow = "1.0"
jellyfish-merkle = { git = "https://github.com/crypto-com/jellyfish-merkle-tree.git", rev = "a5dac3bb8d2a4f96f9cb853e6e80751589b0c095" }
Expand Down
2 changes: 1 addition & 1 deletion chain-tx-enclave-next/mls/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ chain-util = { path = "../../chain-util" }
elliptic-curve = "0.5.0"
p256 = { version = "0.4.1", features = ["arithmetic", "zeroize"] }
zeroize = "1.2"
parity-scale-codec = { features = ["derive"], version = "1.3" }
parity-scale-codec = { features = ["derive"], version = "2.0" }
once_cell = "1.5"
generic-array = "0.14"
static_assertions = "1.1"
Expand Down
2 changes: 1 addition & 1 deletion chain-tx-enclave-next/tdbe/enclave-app/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ edition = "2018"
enclave-macro = { path = "../../../chain-tx-enclave/enclave-macro", default-features = false }
env_logger = { version = "0.8", default-features = false }
log = "0.4"
parity-scale-codec = "1.3"
parity-scale-codec = "2.0"
rs-libc = "0.2"
rustls = "0.19"
sgx-isa = { version = "0.3", features = ["sgxstd"] }
Expand Down
2 changes: 1 addition & 1 deletion chain-tx-enclave-next/tdbe/tdbe-common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ edition = "2018"

[dependencies]
chain-core = { path = "../../../chain-core" }
parity-scale-codec = "1.3"
parity-scale-codec = "2.0"
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ edition = "2018"
[target.'cfg(target_env = "sgx")'.dependencies]
env_logger = { version = "0.8", default-features = false }
log = "0.4"
parity-scale-codec = "1.3"
parity-scale-codec = "2.0"
rand = "0.7"
rs-libc = "0.2"
rustls = "0.19"
Expand Down
2 changes: 1 addition & 1 deletion chain-tx-enclave-next/tx-validation-next/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ chain-tx-validation = { path = "../../chain-tx-validation" }
chain-core = { path = "../../chain-core" }
# TODO: "rand" feature may only be dev-dependency / needed for tests
secp256k1 = { git = "https://github.com/crypto-com/rust-secp256k1-zkp.git", rev = "1aae6edc5f1de0bbdcdb26f1f1d8b00ca28e012a", features = ["recovery", "endomorphism", "lowmemory", "schnorrsig", "rand", "global-context"] }
parity-scale-codec = { version = "1.3" }
parity-scale-codec = { version = "2.0" }
enclave-protocol = { path = "../../enclave-protocol" }
chain-tx-filter = { path = "../../chain-tx-filter" }
aes-gcm-siv = "0.9"
Expand Down
2 changes: 1 addition & 1 deletion chain-tx-enclave/mock-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ edition = "2018"
[dependencies]
chain-core = { path = "../../chain-core" }
chain-tx-validation = { path = "../../chain-tx-validation" }
parity-scale-codec = { features = ["derive"], version = "1.3" }
parity-scale-codec = { features = ["derive"], version = "2.0" }
2 changes: 1 addition & 1 deletion chain-tx-filter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ default = ["bit-vec/std", "chain-core/default"]

[dependencies]
chain-core = { default-features = false, path = "../chain-core" }
parity-scale-codec = { version = "1.3" }
parity-scale-codec = { version = "2.0" }
secp256k1 = { default-features = false, git = "https://github.com/crypto-com/rust-secp256k1-zkp.git", rev = "1aae6edc5f1de0bbdcdb26f1f1d8b00ca28e012a", features = ["endomorphism", "global-context"] }
bit-vec = { default-features = false, version = "0.6" }

Expand Down
2 changes: 1 addition & 1 deletion chain-tx-validation/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ default = ["chain-core/default", "thiserror"]
[dependencies]
chain-core = { path = "../chain-core", default-features = false }
secp256k1 = { git = "https://github.com/crypto-com/rust-secp256k1-zkp.git", default-features = false, rev = "1aae6edc5f1de0bbdcdb26f1f1d8b00ca28e012a", features = ["recovery", "endomorphism", "schnorrsig", "global-context"] }
parity-scale-codec = { features = ["derive"], version = "1.3" }
parity-scale-codec = { features = ["derive"], version = "2.0" }
thiserror = { version = "1.0", default-features = false, optional = true }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion client-common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ itertools = "0.10"
num-bigint = "0.2.5"
log = "0.4.13"
once_cell = "1.5"
parity-scale-codec = { features = ["derive"], version = "1.3" }
parity-scale-codec = { features = ["derive"], version = "2.0" }
rand = "0.7"
rust-argon2 = "0.8"
rustls = { version = "0.19", features = ["dangerous_configuration"] }
Expand Down
2 changes: 1 addition & 1 deletion client-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ ledger-transport = { git = "https://github.com/crypto-com/ledger-rs", rev = "8d9

# secp256k1experimental = { git = "https://github.com/crypto-com/rust-secp256k1-zkp.git", rev = "cccfdb77c068b9cefa07b6884849f8473683d6d4", features = ["serde", "zeroize", "rand", "recovery", "endomorphism", "musig"] }
secp256k1 = { git = "https://github.com/crypto-com/rust-secp256k1-zkp.git", rev = "1aae6edc5f1de0bbdcdb26f1f1d8b00ca28e012a", features = ["serde", "rand", "recovery", "endomorphism", "schnorrsig", "global-context"] }
parity-scale-codec = { features = ["derive"], version = "1.3" }
parity-scale-codec = { features = ["derive"], version = "2.0" }
chrono = { version = "0.4", features = ["serde"] }
rand = "0.7"
hex = "0.4"
Expand Down
2 changes: 1 addition & 1 deletion client-network/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ client-core = { path = "../client-core" }
secstr = { version = "0.4.0", features = ["serde"] }
base64 = "0.13"
chrono = { version = "0.4", features = ["serde"] }
parity-scale-codec = { features = ["derive"], version = "1.3" }
parity-scale-codec = { features = ["derive"], version = "2.0" }
hex = "0.4.2"
secp256k1 = { git = "https://github.com/crypto-com/rust-secp256k1-zkp.git", rev = "1aae6edc5f1de0bbdcdb26f1f1d8b00ca28e012a", features = ["recovery", "global-context"] }
tendermint = "0.15"
Expand Down
2 changes: 1 addition & 1 deletion client-rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ secstr = { version = "0.4.0", features = ["serde"] }
env_logger="0.8.2"
log ="0.4.13"
zeroize = "1.2"
parity-scale-codec = "1.3"
parity-scale-codec = "2.0"
tendermint-light-client = "0.15"

[features]
Expand Down
2 changes: 1 addition & 1 deletion cro-clib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ mock-enclave = ["client-rpc-core/mock-enclave"]
[dependencies]
serde = { version = "1.0", features = ["derive"]}
serde_json = "1.0.61"
parity-scale-codec = { features = ["derive"], version = "1.3" }
parity-scale-codec = { features = ["derive"], version = "2.0" }
hex="0.4.2"
chain-core = { path = "../chain-core" }
client-common = { path = "../client-common" }
Expand Down
2 changes: 1 addition & 1 deletion dev-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ kvdb-memorydb = "0.7"
dirs = "3.0.1"
quest = "0.3"
secstr = "0.4.0"
parity-scale-codec = { version = "1.3" }
parity-scale-codec = { version = "2.0" }
secp256k1 = { git = "https://github.com/crypto-com/rust-secp256k1-zkp.git", rev = "1aae6edc5f1de0bbdcdb26f1f1d8b00ca28e012a", features = ["recovery", "endomorphism", "schnorrsig", "global-context"] }
base64 = "0.13"
mls = { path = "../chain-tx-enclave-next/mls" }
Expand Down
2 changes: 1 addition & 1 deletion enclave-protocol/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ edp = ["chain-core/edp", "parity-scale-codec/std", "secp256k1/lowmemory"]
[dependencies]
chain-core = { path = "../chain-core", default-features = false }
chain-tx-validation = { path = "../chain-tx-validation", default-features = false }
parity-scale-codec = { version = "1.3", features = ["derive"] }
parity-scale-codec = { version = "2.0", features = ["derive"] }
blake3 = { version = "0.3.7", default-features = false }
secp256k1 = { git = "https://github.com/crypto-com/rust-secp256k1-zkp.git", default-features = false, rev = "1aae6edc5f1de0bbdcdb26f1f1d8b00ca28e012a" }
2 changes: 1 addition & 1 deletion test-common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ abci = { version = "0.7", git = "https://github.com/crypto-com/rust-abci.git", r
kvdb-memorydb = "0.7"
protobuf = "2.16.2"
secp256k1 = { git = "https://github.com/crypto-com/rust-secp256k1-zkp.git", rev = "1aae6edc5f1de0bbdcdb26f1f1d8b00ca28e012a", features = ["recovery", "endomorphism", "schnorrsig", "global-context"] }
parity-scale-codec = { features = ["derive"], version = "1.3" }
parity-scale-codec = { features = ["derive"], version = "2.0" }
base64 = "0.13"
hex = "0.4"

Expand Down