-
Notifications
You must be signed in to change notification settings - Fork 55
/
Cargo.toml
70 lines (60 loc) · 1.56 KB
/
Cargo.toml
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
[workspace]
members = [
"crates/analyzers",
"crates/cli",
"crates/graph",
"crates/pyrometer",
"crates/queries",
"crates/shared",
"crates/solc-expressions",
]
resolver = "2"
[workspace.package]
version = "0.2.0"
edition = "2021"
authors = ["Brock Elmore"]
license = "MIT OR Apache-2.0"
homepage = "https://github.com/nascentxyz/pyrometer"
repository = "https://github.com/nascentxyz/pyrometer"
exclude = [
"benches/",
"tests/",
"examples/",
] # exclude the benches directory from the build
rust-version = "1.74"
[profile.release]
debug = true
[profile.dev]
# opt-level = 1 # Enable some optimizations like tail call
# inline = true
[profile.bench]
debug = true
[workspace.dependencies]
analyzers = { path = "crates/analyzers" }
graph = { path = "crates/graph" }
pyrometer = { path = "crates/pyrometer" }
queries = { path = "crates/queries" }
shared = { path = "crates/shared" }
solc-expressions = { path = "crates/solc-expressions" }
solang-parser = { version = "0.2.4", features = ["pt-serde"] }
tracing = { version = "0.1", features = ["attributes"] }
tracing-subscriber = { version = "0.3", features = [
"registry",
"env-filter",
"fmt",
] }
tracing-tree = "0.3.0"
ethers-core = "*"
hex = "0.4.3"
ariadne = "0.4.1"
petgraph = "0.6.2"
ahash = "0.8.10"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
# [workspace]
# members = ["cli", "shared"]
# ######################################
# # Benchmarks
# ######################################
# [[bench]]
# name = "parse"
# harness = false