-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6db64b2
commit 6939aa5
Showing
6 changed files
with
14 additions
and
14 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "aderyn" | ||
version = "0.3.0" | ||
version = "0.3.2" | ||
edition = "2021" | ||
authors = ["Cyfrin <[email protected]>"] | ||
description = "Rust based Solidity AST analyzer" | ||
|
@@ -10,7 +10,7 @@ default-run = "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.0" } | ||
aderyn_driver = { path = "../aderyn_driver", version = "0.3.2" } | ||
clap = { version = "4.4.6", features = ["derive"] } | ||
reqwest = { version = "0.12.2", default-features = false, features = ["blocking", "json", "rustls-tls"] } | ||
semver = "1.0.22" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "aderyn_core" | ||
version = "0.3.0" | ||
version = "0.3.2" | ||
edition = "2021" | ||
authors = ["Cyfrin <[email protected]>"] | ||
description = "Rust based Solidity AST analyzer backend" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "aderyn_driver" | ||
version = "0.3.0" | ||
version = "0.3.2" | ||
edition = "2021" | ||
authors = ["Cyfrin <[email protected]>"] | ||
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.0" } | ||
aderyn_core = { path = "../aderyn_core", version = "0.3.2" } | ||
rayon = "1.8.0" | ||
cyfrin-foundry-compilers = { version = "0.3.20-aderyn", features = ["svm-solc"] } | ||
serde_json = { version = "1.0.96", features = ["preserve_order"] } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "aderyn_py" | ||
version = "0.3.0" | ||
version = "0.3.2" | ||
edition = "2021" | ||
authors = ["Cyfrin <[email protected]>"] | ||
description = "Rust based Solidity AST analyzer python bindings" | ||
|
@@ -14,10 +14,10 @@ name = "aderynpy" | |
crate-type = ["cdylib"] | ||
|
||
[dependencies] | ||
aderyn_driver = { path = "../aderyn_driver", version = "0.3.0" } | ||
aderyn_driver = { path = "../aderyn_driver", version = "0.3.2" } | ||
field_access = "0.1.8" | ||
|
||
[dependencies.pyo3] | ||
version = "0.22.2" | ||
# "abi3-py38" tells pyo3 (and maturin) to build using the stable ABI with minimum Python version 3.8 | ||
features = ["abi3-py38"] | ||
features = ["abi3-py38"] |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.