-
Notifications
You must be signed in to change notification settings - Fork 111
Expand file tree
/
Copy pathCargo.toml
More file actions
91 lines (80 loc) · 2.24 KB
/
Copy pathCargo.toml
File metadata and controls
91 lines (80 loc) · 2.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[workspace]
resolver="2"
members = [
"aderyn",
"aderyn_core",
"aderyn_driver",
"tools/*",
]
[workspace.package]
edition = "2024"
authors = ["Cyfrin <aderyn@cyfrin.io>"]
description = "Rust based Solidity AST analyzer backend"
license = "MIT"
repository = "https://github.com/cyfrin/aderyn"
homepage = "https://github.com/cyfrin/aderyn"
[workspace.lints.clippy]
large_enum_variant = "allow"
result_large_err = "allow"
[workspace.dependencies]
aderyn_core = { version = "0.6.8", path = "aderyn_core" }
aderyn_driver = { version = "0.6.8", path = "aderyn_driver" }
indoc = "2"
clap = "4.4.6"
criterion = "0.5.1"
derive_more = "2"
eyre = "0.6.12"
field_access = "0.1.8"
ignore = "0.4.21"
lazy-regex = "3.2.0"
log = "0.4.22"
notify-debouncer-full = "0.3.1"
num-bigint = "0.4"
num-traits = "0.2"
once_cell = "1.19.0"
phf = "0.11.2"
prettytable = "0.10.0"
rayon = "1.11.0"
reqwest = { version = "0.12.2", default-features = false }
semver = "1.0.26"
serde = { version = "1.0.160", features = ["derive"] }
serde-sarif = "0.4.2"
serde_json = "1.0.96"
serde_repr = "0.1.12"
serial_test = "3.0.0"
strum = "0.26"
termcolor = "1.4.1"
tokio = "1.40.0"
toml = "0.8.13"
tower-lsp = "0.20.0"
dunce = "=1.0.5"
petgraph = "0"
crossbeam-channel = "0.5.15"
webbrowser = "1.0.4"
urlencoding = "2.1.3"
derive_builder = "0.20.2"
rmcp = { version = "0.6", features = ["transport-streamable-http-server"] }
axum = { version = "0.8", features = ["macros"] }
askama = { version = "0.14.0", features = ["full"] }
clap_complete = "4.4"
regex = "1.12.2"
paste = "1.0"
remain = "0.2.15"
# Uncomment in Production (just before merging to dev)
# Cyfrin managed github repository
solidity_ast = { git = "https://github.com/Cyfrin/solidity-ast-rs", tag = "v0.0.1-alpha.beta.7", package = "solidity-ast" }
# Uncomment when debugging in branch (PR)
# solidity_ast = { git = "https://github.com/Cyfrin/solidity-ast-rs", branch = "feat/replace-me", package = "solidity-ast" }
# Uncomment when debugging locally
# solidity_ast = { path = "../solidity-ast-rs", package = "solidity-ast"}
[profile.release]
codegen-units = 1
lto = true
[profile.lspdev]
inherits = "dist"
[profile.lspdev.package."*"]
inherits = "dist"
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"