forked from Cyfrin/aderyn
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
69 lines (60 loc) · 1.69 KB
/
Cargo.toml
File metadata and controls
69 lines (60 loc) · 1.69 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
[workspace]
resolver="2"
members = [
"aderyn",
"aderyn_core",
"aderyn_driver",
"tools/*",
]
[workspace.dependencies]
aderyn_core = { version = "0.5.5", path = "aderyn_core" }
aderyn_driver = { version = "0.5.5", path = "aderyn_driver" }
clap = "4.4.6"
criterion = "0.5.1"
crossbeam-channel = "0.5.9"
derive_more = "0.99.18"
eyre = "0.6.12"
field_access = "0.1.8"
ignore = "0.4.21"
lazy-regex = "3.2.0"
lazy_static = "1.5.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.8.0"
reqwest = { version = "0.12.2", default-features = false }
semver = "1.0.26"
serde = "1.0.160"
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.4"
petgraph = "0"
# Uncomment in Production (just before merging to dev)
# Cyfrin managed github repository
foundry_compilers_aletheia = { git = "https://github.com/Cyfrin/foundry-compilers-aletheia", tag = "v0.0.1-alpha.beta.2", package = "foundry-compilers-aletheia" }
# Uncomment when debugging in branch (PR)
# foundry_compilers_aletheia = { git = "https://github.com/Cyfrin/foundry-compilers-aletheia", branch = "main", package = "foundry-compilers-aletheia" }
# Uncomment when debuggin locally
# foundry_compilers_aletheia = { path = "../foundry-compilers-aletheia", package = "foundry-compilers-aletheia"}
[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"