diff --git a/modules/currencies/Cargo.toml b/modules/currencies/Cargo.toml index 8f4d1bd..67866a0 100644 --- a/modules/currencies/Cargo.toml +++ b/modules/currencies/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dependencies] serde = { version = "1.0.111", optional = true } -codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } +codec = { package = "parity-scale-codec", version = "3.1.5", default-features = false } sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , tag = "monthly-2022-09" } sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , tag = "monthly-2022-09" } sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , tag = "monthly-2022-09" } diff --git a/modules/evm-accounts/Cargo.toml b/modules/evm-accounts/Cargo.toml index 5020def..b24cb63 100644 --- a/modules/evm-accounts/Cargo.toml +++ b/modules/evm-accounts/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dependencies] serde = { version = "1.0.101", optional = true } -codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } +codec = { package = "parity-scale-codec", version = "3.1.5", default-features = false } libsecp256k1 = { version = "0.3.4", default-features = false, features = ["hmac"] } frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , tag = "monthly-2022-09" } diff --git a/modules/evm-bridge/Cargo.toml b/modules/evm-bridge/Cargo.toml index 0c2d1c0..edc8727 100644 --- a/modules/evm-bridge/Cargo.toml +++ b/modules/evm-bridge/Cargo.toml @@ -9,7 +9,7 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] serde = { version = "1.0.101", optional = true, features = ["derive"] } -codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } +codec = { package = "parity-scale-codec", version = "3.1.5", default-features = false } frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , tag = "monthly-2022-09" } frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , tag = "monthly-2022-09" } sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , tag = "monthly-2022-09" } @@ -19,7 +19,7 @@ sp-io = { git = "https://github.com/paritytech/substrate", default-features = fa primitive-types = { version = "0.10", default-features = false, features = ["rlp", "byteorder"] } sha3 = { version = "0.8", default-features = false } impl-trait-for-tuples = "0.2.1" -ethereum-types = { version = "0.12.0", default-features = false } +ethereum-types = { version = "0.13.1", default-features = false } primitives = { package = "reef-primitives", path = "../../primitives", default-features = false } support = { package = "module-support", path = "../support", default-features = false } module-evm = { path = "../evm", default-features = false } diff --git a/modules/evm/Cargo.toml b/modules/evm/Cargo.toml index d5bed93..bb7f12a 100644 --- a/modules/evm/Cargo.toml +++ b/modules/evm/Cargo.toml @@ -8,7 +8,7 @@ edition = "2018" targets = ["x86_64-unknown-linux-gnu"] [dependencies] -codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } +codec = { package = "parity-scale-codec", version = "3.1.5", default-features = false } impl-trait-for-tuples = "0.1" primitive-types = { version = "0.10", default-features = false, features = ["rlp", "byteorder"] } ripemd160 = { version = "0.9", default-features = false } @@ -18,9 +18,9 @@ sha3 = { version = "0.8", default-features = false } tiny-keccak = { version = "2.0", features = ["fips202"] } log = { version = "0.4.14", default-features = false } -evm = { version = "0.30.1", default-features = false, features = ["with-codec"] } -evm-gasometer = { version = "0.30.0", default-features = false } -evm-runtime = { version = "0.30.0", default-features = false } +evm = { version = "0.35.0", default-features = false, features = ["with-codec"] } +evm-gasometer = { version = "0.35.0", default-features = false } +evm-runtime = { version = "0.35.0", default-features = false } frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , tag = "monthly-2022-09" } frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , tag = "monthly-2022-09" } diff --git a/modules/evm/rpc/Cargo.toml b/modules/evm/rpc/Cargo.toml index 2d6cf8e..56dbc4d 100644 --- a/modules/evm/rpc/Cargo.toml +++ b/modules/evm/rpc/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] jsonrpc-core = "15.0.0" jsonrpc-derive = "15.0.0" -ethereum-types = "0.12.0" +ethereum-types = "0.13.1" sp-api = { git = "https://github.com/paritytech/substrate", tag = "monthly-2022-09" } sp-blockchain = { git = "https://github.com/paritytech/substrate", tag = "monthly-2022-09" } sp-core = { git = "https://github.com/paritytech/substrate", tag = "monthly-2022-09" } diff --git a/modules/evm/rpc/runtime_api/Cargo.toml b/modules/evm/rpc/runtime_api/Cargo.toml index 6d85dd7..2832d39 100644 --- a/modules/evm/rpc/runtime_api/Cargo.toml +++ b/modules/evm/rpc/runtime_api/Cargo.toml @@ -9,7 +9,7 @@ sp-runtime = { git = "https://github.com/paritytech/substrate", default-features sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , tag = "monthly-2022-09" } sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , tag = "monthly-2022-09" } sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , tag = "monthly-2022-09" } -ethereum-types = { version = "0.12.0", default-features = false } +ethereum-types = { version = "0.13.1", default-features = false } primitives = { package = "reef-primitives", path = "../../../../primitives", default-features = false } [features] diff --git a/modules/example/Cargo.toml b/modules/example/Cargo.toml index 361f0cf..5d045b2 100644 --- a/modules/example/Cargo.toml +++ b/modules/example/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dependencies] serde = { version = "1.0.101", optional = true } -codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } +codec = { package = "parity-scale-codec", version = "3.1.5", default-features = false } sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , tag = "monthly-2022-09" } frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , tag = "monthly-2022-09" } frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , tag = "monthly-2022-09" } diff --git a/modules/poc/Cargo.toml b/modules/poc/Cargo.toml index 96530c3..93120f2 100644 --- a/modules/poc/Cargo.toml +++ b/modules/poc/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] serde = { version = "1.0.101", optional = true } -codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } +codec = { package = "parity-scale-codec", version = "3.1.5", default-features = false } sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , tag = "monthly-2022-09" } sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , tag = "monthly-2022-09" } frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , tag = "monthly-2022-09" } diff --git a/modules/support/Cargo.toml b/modules/support/Cargo.toml index 7ea5b78..fbdfb4c 100644 --- a/modules/support/Cargo.toml +++ b/modules/support/Cargo.toml @@ -6,12 +6,12 @@ edition = "2018" [dependencies] impl-trait-for-tuples = "0.2.1" -codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } +codec = { package = "parity-scale-codec", version = "3.1.5", default-features = false } sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , tag = "monthly-2022-09" } frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , tag = "monthly-2022-09" } sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , tag = "monthly-2022-09" } sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , tag = "monthly-2022-09" } -ethereum-types = { version = "0.12.0", default-features = false } +ethereum-types = { version = "0.13.1", default-features = false } orml-traits = { path = "../../orml/traits", default-features = false } primitives = { package = "reef-primitives", path = "../../primitives", default-features = false } diff --git a/modules/transaction_payment/Cargo.toml b/modules/transaction_payment/Cargo.toml index ead2e40..e8b19dd 100644 --- a/modules/transaction_payment/Cargo.toml +++ b/modules/transaction_payment/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dependencies] serde = { version = "1.0.101", optional = true } -codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } +codec = { package = "parity-scale-codec", version = "3.1.5", default-features = false } sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , tag = "monthly-2022-09" } frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , tag = "monthly-2022-09" } frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , tag = "monthly-2022-09" } diff --git a/primitives/Cargo.toml b/primitives/Cargo.toml index 82e6c52..b76e269 100644 --- a/primitives/Cargo.toml +++ b/primitives/Cargo.toml @@ -6,12 +6,12 @@ edition = "2018" [dependencies] serde = { version = "1.0.101", optional = true } -codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } +codec = { package = "parity-scale-codec", version = "3.1.5", default-features = false } sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , tag = "monthly-2022-09" } sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , tag = "monthly-2022-09" } sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , tag = "monthly-2022-09" } sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , tag = "monthly-2022-09" } -ethereum-types = { version = "0.12.0", default-features = false } +ethereum-types = { version = "0.13.1", default-features = false } evm = { version = "0.30.1", default-features = false, features = ["with-codec"] } [dev-dependencies] diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index db6d432..f69b17a 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -18,14 +18,14 @@ substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", tag default-features = false features = ['derive'] package = 'parity-scale-codec' -version = '2.0.0' +version = '3.1.5' [dependencies] smallvec = "1.4.0" hex-literal = { optional = true, version = '0.3.1' } serde = { features = ['derive'], optional = true, version = '1.0.119' } serde_json = "1.0.60" -evm = { version = "0.30.1", optional = true, default-features = false } +evm = { version = "0.35.0", optional = true, default-features = false } log = { version = "0.4.14", default-features = false } # Substrate dependencies diff --git a/runtime/common/Cargo.toml b/runtime/common/Cargo.toml index 40f839f..93b20d1 100644 --- a/runtime/common/Cargo.toml +++ b/runtime/common/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] static_assertions = "1.1.0" serde = { version = "1.0.101", optional = true, default-features = false } -codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } +codec = { package = "parity-scale-codec", version = "3.1.5", default-features = false } sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.10" } sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.10" } sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.10" }