diff --git a/ethers-contract/ethers-contract-abigen/Cargo.toml b/ethers-contract/ethers-contract-abigen/Cargo.toml index f69e2f69..164d8b9e 100644 --- a/ethers-contract/ethers-contract-abigen/Cargo.toml +++ b/ethers-contract/ethers-contract-abigen/Cargo.toml @@ -1,11 +1,12 @@ [package] name = "ethers-contract-abigen" version = "1.0.2" +edition = "2021" +rust-version = "1.64" authors = [ "Nicholas Rodrigues Lordello ", "Georgios Konstantopoulos ", ] -edition = "2018" license = "MIT OR Apache-2.0" description = "Code generation for type-safe bindings to Ethereum smart contracts" homepage = "https://docs.rs/ethers" diff --git a/ethers-contract/ethers-contract-derive/Cargo.toml b/ethers-contract/ethers-contract-derive/Cargo.toml index 1c49c995..0191d2f5 100644 --- a/ethers-contract/ethers-contract-derive/Cargo.toml +++ b/ethers-contract/ethers-contract-derive/Cargo.toml @@ -1,11 +1,12 @@ [package] name = "ethers-contract-derive" version = "1.0.2" +edition = "2021" +rust-version = "1.64" authors = [ "Nicholas Rodrigues Lordello ", "Georgios Konstantopoulos ", ] -edition = "2018" license = "MIT OR Apache-2.0" description = "Proc macro for type-safe bindings generation to Ethereum and Celo smart contracts" homepage = "https://docs.rs/ethers" diff --git a/ethers-core/Cargo.toml b/ethers-core/Cargo.toml index f1bb1692..8aa21a6f 100644 --- a/ethers-core/Cargo.toml +++ b/ethers-core/Cargo.toml @@ -1,10 +1,10 @@ [package] name = "ethers-core" -license = "MIT OR Apache-2.0" version = "1.0.2" +edition = "2021" rust-version = "1.64" authors = ["Georgios Konstantopoulos "] -edition = "2018" +license = "MIT OR Apache-2.0" description = "Core structures for the ethers-rs crate" homepage = "https://docs.rs/ethers" repository = "https://github.com/gakonst/ethers-rs" diff --git a/ethers-core/ethers-derive-eip712/Cargo.toml b/ethers-core/ethers-derive-eip712/Cargo.toml index 305bfcfd..61073774 100644 --- a/ethers-core/ethers-derive-eip712/Cargo.toml +++ b/ethers-core/ethers-derive-eip712/Cargo.toml @@ -1,7 +1,8 @@ [package] name = "ethers-derive-eip712" version = "1.0.2" -edition = "2018" +edition = "2021" +rust-version = "1.64" description = "Custom derive macro for EIP-712 typed data" license = "MIT OR Apache-2.0" @@ -11,7 +12,10 @@ proc-macro = true [dependencies] quote = "1.0.9" syn = "1.0.77" -ethers-core = { version = "^1.0.0", path = "../", default-features = false, features = ["eip712", "macros"] } +ethers-core = { version = "^1.0.0", path = "../", default-features = false, features = [ + "eip712", + "macros", +] } hex = "0.4.3" serde_json = "1.0.68" diff --git a/ethers-etherscan/Cargo.toml b/ethers-etherscan/Cargo.toml index abea9a1e..8de6d5ac 100644 --- a/ethers-etherscan/Cargo.toml +++ b/ethers-etherscan/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "ethers-etherscan" version = "1.0.2" +edition = "2021" rust-version = "1.64" authors = [ "Matthias Seitz ", "Georgios Konstantopoulos ", ] license = "MIT OR Apache-2.0" -edition = "2018" readme = "../README.md" documentation = "https://docs.rs/ethers" repository = "https://github.com/gakonst/ethers-rs" diff --git a/ethers-middleware/Cargo.toml b/ethers-middleware/Cargo.toml index 1deadae5..08c79162 100644 --- a/ethers-middleware/Cargo.toml +++ b/ethers-middleware/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "ethers-middleware" version = "1.0.2" -edition = "2018" +edition = "2021" rust-version = "1.64" authors = ["Georgios Konstantopoulos "] license = "MIT OR Apache-2.0" diff --git a/ethers-providers/Cargo.toml b/ethers-providers/Cargo.toml index 2e3798d3..e3117d68 100644 --- a/ethers-providers/Cargo.toml +++ b/ethers-providers/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "ethers-providers" version = "1.0.2" -edition = "2018" +edition = "2021" rust-version = "1.64" authors = ["Georgios Konstantopoulos "] license = "MIT OR Apache-2.0" diff --git a/ethers-signers/Cargo.toml b/ethers-signers/Cargo.toml index 02c2bab1..8a25e34f 100644 --- a/ethers-signers/Cargo.toml +++ b/ethers-signers/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "ethers-signers" version = "1.0.2" -edition = "2018" +edition = "2021" rust-version = "1.64" authors = ["Georgios Konstantopoulos "] license = "MIT OR Apache-2.0" diff --git a/ethers-solc/Cargo.toml b/ethers-solc/Cargo.toml index db2c4955..3555e1b4 100644 --- a/ethers-solc/Cargo.toml +++ b/ethers-solc/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "ethers-solc" version = "1.0.2" -edition = "2018" +edition = "2021" rust-version = "1.64" authors = [ "Matthias Seitz ", diff --git a/examples/ethers-wasm/Cargo.toml b/examples/ethers-wasm/Cargo.toml index 181e0f81..6ca4f575 100644 --- a/examples/ethers-wasm/Cargo.toml +++ b/examples/ethers-wasm/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "ethers-wasm" version = "0.1.0" -edition = "2018" +edition = "2021" rust-version = "1.64" authors = ["Matthias Seitz "] license = "MIT OR Apache-2.0"