diff --git a/Cargo.lock b/Cargo.lock index 42f688a..1166090 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -8684,7 +8684,7 @@ dependencies = [ [[package]] name = "revive-build-utils" -version = "0.1.0" +version = "0.2.0" [[package]] name = "revive-builtins" @@ -8707,7 +8707,7 @@ dependencies = [ [[package]] name = "revive-differential" -version = "0.1.0" +version = "0.2.0" dependencies = [ "alloy-genesis", "alloy-primitives 1.3.1", @@ -8730,7 +8730,7 @@ dependencies = [ [[package]] name = "revive-integration" -version = "0.1.1" +version = "0.2.0" dependencies = [ "alloy-primitives 1.3.1", "alloy-sol-types 1.3.1", @@ -8758,7 +8758,7 @@ dependencies = [ [[package]] name = "revive-llvm-builder" -version = "0.2.0" +version = "0.3.0" dependencies = [ "anyhow", "assert_cmd", @@ -8801,7 +8801,7 @@ dependencies = [ [[package]] name = "revive-runner" -version = "0.1.0" +version = "0.2.0" dependencies = [ "alloy-primitives 1.3.1", "anyhow", @@ -8820,7 +8820,7 @@ dependencies = [ [[package]] name = "revive-runtime-api" -version = "0.2.0" +version = "0.3.0" dependencies = [ "anyhow", "inkwell", @@ -8843,7 +8843,7 @@ dependencies = [ [[package]] name = "revive-stdlib" -version = "0.1.1" +version = "0.2.0" dependencies = [ "inkwell", "revive-build-utils", diff --git a/Cargo.toml b/Cargo.toml index bc699f5..fdd73fd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,21 +14,21 @@ repository = "https://github.com/paritytech/revive" rust-version = "1.85.0" [workspace.dependencies] +lld-sys = { version = "0.1.0", path = "crates/lld-sys" } resolc = { version = "0.4.0", path = "crates/resolc", default-features = false } revive-benchmarks = { version = "0.1.0", path = "crates/benchmarks" } +revive-build-utils = { version = "0.2.0", path = "crates/build-utils" } revive-builtins = { version = "0.1.0", path = "crates/builtins" } revive-common = { version = "0.2.0", path = "crates/common" } -revive-differential = { version = "0.1.0", path = "crates/differential" } +revive-differential = { version = "0.2.0", path = "crates/differential" } revive-explorer = { version = "0.1.0", path = "crates/explore" } -revive-integration = { version = "0.1.1", path = "crates/integration" } +revive-integration = { version = "0.2.0", path = "crates/integration" } revive-linker = { version = "0.2.0", path = "crates/linker" } -lld-sys = { version = "0.1.0", path = "crates/lld-sys" } revive-llvm-context = { version = "0.4.0", path = "crates/llvm-context" } -revive-runtime-api = { version = "0.2.0", path = "crates/runtime-api" } -revive-runner = { version = "0.1.0", path = "crates/runner" } +revive-runner = { version = "0.2.0", path = "crates/runner" } +revive-runtime-api = { version = "0.3.0", path = "crates/runtime-api" } revive-solc-json-interface = { version = "0.3.0", path = "crates/solc-json-interface", default-features = false } -revive-stdlib = { version = "0.1.1", path = "crates/stdlib" } -revive-build-utils = { version = "0.1.0", path = "crates/build-utils" } +revive-stdlib = { version = "0.2.0", path = "crates/stdlib" } revive-yul = { version = "0.3.0", path = "crates/yul" } hex = "0.4.3" diff --git a/crates/build-utils/Cargo.toml b/crates/build-utils/Cargo.toml index edcf97a..49c1349 100644 --- a/crates/build-utils/Cargo.toml +++ b/crates/build-utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "revive-build-utils" -version.workspace = true +version = "0.2.0" license.workspace = true edition.workspace = true repository.workspace = true diff --git a/crates/differential/Cargo.toml b/crates/differential/Cargo.toml index f58bfd0..5bc873f 100644 --- a/crates/differential/Cargo.toml +++ b/crates/differential/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "revive-differential" description = "utilities for differential testing the revive compiler against EVM" -version.workspace = true +version = "0.2.0" license.workspace = true edition.workspace = true authors.workspace = true diff --git a/crates/explorer/Cargo.toml b/crates/explorer/Cargo.toml index f9ef6c3..3ba9075 100644 --- a/crates/explorer/Cargo.toml +++ b/crates/explorer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "revive-explorer" -version.workspace = true +version = "0.1.0" license.workspace = true edition.workspace = true repository.workspace = true diff --git a/crates/integration/Cargo.toml b/crates/integration/Cargo.toml index 76725a5..d32942b 100644 --- a/crates/integration/Cargo.toml +++ b/crates/integration/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "revive-integration" -version = "0.1.1" +version = "0.2.0" license.workspace = true edition.workspace = true repository.workspace = true diff --git a/crates/integration/codesize.json b/crates/integration/codesize.json index 1570637..67d85ad 100644 --- a/crates/integration/codesize.json +++ b/crates/integration/codesize.json @@ -1,10 +1,10 @@ { "Baseline": 932, "Computation": 2313, - "DivisionArithmetics": 8959, - "ERC20": 16993, + "DivisionArithmetics": 9103, + "ERC20": 17479, "Events": 1692, - "FibonacciIterative": 1474, + "FibonacciIterative": 1508, "Flipper": 2098, - "SHA1": 7751 + "SHA1": 8176 } \ No newline at end of file diff --git a/crates/llvm-builder/Cargo.toml b/crates/llvm-builder/Cargo.toml index 1263a09..2e463d9 100644 --- a/crates/llvm-builder/Cargo.toml +++ b/crates/llvm-builder/Cargo.toml @@ -6,7 +6,7 @@ authors = [ "Anton Baliasnikov ", "Cyrill Leutwiler ", ] -version = "0.2.0" +version = "0.3.0" license.workspace = true edition.workspace = true repository.workspace = true diff --git a/crates/runner/Cargo.toml b/crates/runner/Cargo.toml index 7cd1647..23ba7e7 100644 --- a/crates/runner/Cargo.toml +++ b/crates/runner/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "revive-runner" -version.workspace = true +version = "0.2.0" license.workspace = true edition.workspace = true repository.workspace = true diff --git a/crates/runtime-api/Cargo.toml b/crates/runtime-api/Cargo.toml index 507ffbd..2c632d0 100644 --- a/crates/runtime-api/Cargo.toml +++ b/crates/runtime-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "revive-runtime-api" -version = "0.2.0" +version = "0.3.0" license.workspace = true edition.workspace = true repository.workspace = true diff --git a/crates/stdlib/Cargo.toml b/crates/stdlib/Cargo.toml index 06db812..76c6ab6 100644 --- a/crates/stdlib/Cargo.toml +++ b/crates/stdlib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "revive-stdlib" -version = "0.1.1" +version = "0.2.0" license.workspace = true edition.workspace = true repository.workspace = true