diff --git a/Cargo.lock b/Cargo.lock index ef413767..4af7bca6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -23,7 +23,7 @@ dependencies = [ [[package]] name = "aderyn" -version = "0.3.4" +version = "0.4.0" dependencies = [ "aderyn_driver", "clap", @@ -44,7 +44,7 @@ dependencies = [ [[package]] name = "aderyn_core" -version = "0.3.4" +version = "0.4.0" dependencies = [ "crossbeam-channel", "cyfrin-foundry-compilers", @@ -70,7 +70,7 @@ dependencies = [ [[package]] name = "aderyn_driver" -version = "0.3.4" +version = "0.4.0" dependencies = [ "aderyn_core", "criterion", diff --git a/aderyn/Cargo.toml b/aderyn/Cargo.toml index 1b446024..80336a9f 100644 --- a/aderyn/Cargo.toml +++ b/aderyn/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aderyn" -version = "0.3.4" +version = "0.4.0" edition = "2021" authors = ["Cyfrin "] description = "Rust based Solidity AST analyzer" @@ -12,7 +12,7 @@ homepage = "https://github.com/cyfrin/aderyn" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -aderyn_driver = { path = "../aderyn_driver", version = "0.3.3" } +aderyn_driver = { path = "../aderyn_driver", version = "0.4.0" } clap = { version = "4.4.6", features = ["derive"] } reqwest = { version = "0.12.2", default-features = false, features = ["blocking", "json", "rustls-tls"] } semver = "1.0.22" diff --git a/aderyn_core/Cargo.toml b/aderyn_core/Cargo.toml index f7837ac5..ae046645 100644 --- a/aderyn_core/Cargo.toml +++ b/aderyn_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aderyn_core" -version = "0.3.4" +version = "0.4.0" edition = "2021" authors = ["Cyfrin "] description = "Rust based Solidity AST analyzer backend" diff --git a/aderyn_driver/Cargo.toml b/aderyn_driver/Cargo.toml index e334ef29..a652271a 100644 --- a/aderyn_driver/Cargo.toml +++ b/aderyn_driver/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aderyn_driver" -version = "0.3.4" +version = "0.4.0" edition = "2021" authors = ["Cyfrin "] description = "Rust based Solidity AST analyzer driver" @@ -9,7 +9,7 @@ license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -aderyn_core = { path = "../aderyn_core", version = "0.3.3" } +aderyn_core = { path = "../aderyn_core", version = "0.4.0" } rayon = "1.8.0" cyfrin-foundry-compilers = { version = "0.3.20-aderyn", features = ["svm-solc"] } serde_json = { version = "1.0.96", features = ["preserve_order"] }