diff --git a/Cargo.lock b/Cargo.lock index 908bd829f281..b7e76c436e2b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -163,7 +163,7 @@ dependencies = [ [[package]] name = "anvil" -version = "0.1.0" +version = "1.0.0" dependencies = [ "anvil-core", "anvil-rpc", @@ -667,7 +667,13 @@ checksum = "df8670b8c7b9dae1793364eafadf7239c40d669904660c5960d74cfd80b46a53" [[package]] name = "cast" -version = "0.2.0" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5" + +[[package]] +name = "cast" +version = "1.0.0" dependencies = [ "async-trait", "chrono", @@ -695,12 +701,6 @@ dependencies = [ "tokio", ] -[[package]] -name = "cast" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5" - [[package]] name = "cc" version = "1.0.79" @@ -718,7 +718,7 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "chisel" -version = "0.1.1" +version = "1.0.0" dependencies = [ "bytes", "clap 4.3.5", @@ -2169,7 +2169,7 @@ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" [[package]] name = "forge" -version = "0.2.0" +version = "1.0.0" dependencies = [ "comfy-table", "ethers", @@ -2226,7 +2226,7 @@ dependencies = [ [[package]] name = "forge-fmt" -version = "0.2.0" +version = "1.0.0" dependencies = [ "ariadne", "ethers-core", @@ -2252,7 +2252,7 @@ dependencies = [ [[package]] name = "foundry-abi" -version = "0.1.0" +version = "1.0.0" dependencies = [ "ethers-contract", "ethers-contract-abigen", @@ -2265,7 +2265,7 @@ dependencies = [ [[package]] name = "foundry-binder" -version = "0.1.0" +version = "1.0.0" dependencies = [ "curl", "ethers-contract", @@ -2280,12 +2280,12 @@ dependencies = [ [[package]] name = "foundry-cli" -version = "0.2.0" +version = "1.0.0" dependencies = [ "anvil", "async-trait", "bytes", - "cast 0.2.0", + "cast 1.0.0", "clap 4.3.5", "clap_complete", "clap_complete_fig", @@ -2366,7 +2366,7 @@ dependencies = [ [[package]] name = "foundry-common" -version = "0.1.0" +version = "1.0.0" dependencies = [ "auto_impl", "clap 4.3.5", @@ -2398,7 +2398,7 @@ dependencies = [ [[package]] name = "foundry-config" -version = "0.2.0" +version = "1.0.0" dependencies = [ "Inflector", "dirs-next", @@ -2429,7 +2429,7 @@ dependencies = [ [[package]] name = "foundry-evm" -version = "0.2.0" +version = "1.0.0" dependencies = [ "auto_impl", "bytes", @@ -2464,7 +2464,7 @@ dependencies = [ [[package]] name = "foundry-macros" -version = "0.1.0" +version = "1.0.0" dependencies = [ "ethers-core", "foundry-macros-impl", @@ -2483,7 +2483,7 @@ dependencies = [ [[package]] name = "foundry-utils" -version = "0.2.0" +version = "1.0.0" dependencies = [ "ethers", "ethers-addressbook", @@ -6768,7 +6768,7 @@ checksum = "9e79c4d996edb816c91e4308506774452e55e95c3c9de07b6729e17e15a5ef81" [[package]] name = "ui" -version = "0.2.0" +version = "1.0.0" dependencies = [ "crossterm 0.26.1", "ethers", diff --git a/abi/Cargo.toml b/abi/Cargo.toml index 74cec69f0fa5..a26c08920a2d 100644 --- a/abi/Cargo.toml +++ b/abi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "foundry-abi" -version = "0.1.0" +version = "1.0.0" edition = "2021" license = "MIT OR Apache-2.0" readme = "README.md" diff --git a/anvil/Cargo.toml b/anvil/Cargo.toml index 4d56f56f107b..c806bc91486f 100644 --- a/anvil/Cargo.toml +++ b/anvil/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "anvil" -version = "0.1.0" +version = "1.0.0" edition = "2021" license = "MIT OR Apache-2.0" readme = "README.md" diff --git a/binder/Cargo.toml b/binder/Cargo.toml index b390937cf278..91c3137da4bb 100644 --- a/binder/Cargo.toml +++ b/binder/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "foundry-binder" -version = "0.1.0" +version = "1.0.0" edition = "2021" license = "MIT OR Apache-2.0" readme = "./README.md" diff --git a/cast/Cargo.toml b/cast/Cargo.toml index cee77a664ee8..2e9938a60195 100644 --- a/cast/Cargo.toml +++ b/cast/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cast" -version = "0.2.0" +version = "1.0.0" edition = "2021" license = "MIT OR Apache-2.0" readme = "README.md" diff --git a/chisel/Cargo.toml b/chisel/Cargo.toml index ef3772f119cc..eef5845dd42d 100644 --- a/chisel/Cargo.toml +++ b/chisel/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "chisel" -version = "0.1.1" +version = "1.0.0" edition = "2021" authors = [ "clabby ", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 7376d9da7525..b1ca1be1366b 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "foundry-cli" -version = "0.2.0" +version = "1.0.0" edition = "2021" license = "MIT OR Apache-2.0" readme = "README.md" diff --git a/common/Cargo.toml b/common/Cargo.toml index 4e1ecb46ed90..21be09d8f88c 100644 --- a/common/Cargo.toml +++ b/common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "foundry-common" -version = "0.1.0" +version = "1.0.0" edition = "2021" license = "MIT OR Apache-2.0" readme = "README.md" diff --git a/config/Cargo.toml b/config/Cargo.toml index 6ee6c8c1fda6..250375c196e9 100644 --- a/config/Cargo.toml +++ b/config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "foundry-config" -version = "0.2.0" +version = "1.0.0" edition = "2021" license = "MIT OR Apache-2.0" description = "Foundry configuration" diff --git a/evm/Cargo.toml b/evm/Cargo.toml index ca9ce3f73675..d56cdcdefe70 100644 --- a/evm/Cargo.toml +++ b/evm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "foundry-evm" -version = "0.2.0" +version = "1.0.0" edition = "2021" license = "MIT OR Apache-2.0" readme = "../README.md" diff --git a/fmt/Cargo.toml b/fmt/Cargo.toml index 89797e3b5dd2..8e224cf7838b 100644 --- a/fmt/Cargo.toml +++ b/fmt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "forge-fmt" -version = "0.2.0" +version = "1.0.0" edition = "2021" description = "Foundry's solidity formatting and linting support" license = "MIT OR Apache-2.0" diff --git a/forge/Cargo.toml b/forge/Cargo.toml index d194a68252a3..19ca6c0dea49 100644 --- a/forge/Cargo.toml +++ b/forge/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "forge" -version = "0.2.0" +version = "1.0.0" edition = "2021" license = "MIT OR Apache-2.0" diff --git a/macros/Cargo.toml b/macros/Cargo.toml index c33ac8574f67..da29828c5b31 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "foundry-macros" -version = "0.1.0" +version = "1.0.0" edition = "2021" license = "MIT OR Apache-2.0" readme = "README.md" diff --git a/ui/Cargo.toml b/ui/Cargo.toml index 3d0c3a024e33..64e03ea33ad1 100644 --- a/ui/Cargo.toml +++ b/ui/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ui" -version = "0.2.0" +version = "1.0.0" edition = "2021" license = "MIT OR Apache-2.0" readme = "../README.md" diff --git a/utils/Cargo.toml b/utils/Cargo.toml index cbf58c040f7a..277517dd3ab4 100644 --- a/utils/Cargo.toml +++ b/utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "foundry-utils" -version = "0.2.0" +version = "1.0.0" edition = "2021" license = "MIT OR Apache-2.0" readme = "README.md"