-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
72 lines (67 loc) · 1.94 KB
/
Copy pathCargo.toml
File metadata and controls
72 lines (67 loc) · 1.94 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
[package]
name = "solstice"
version = "0.1.3"
edition = "2021"
build = "src/build.rs"
[[bin]]
name = "solstice"
path = "src/bin/main.rs"
[lib]
name = "solstice"
path = "src/lib.rs"
[dependencies]
chumsky = "0.8.0"
ropey = "1.5.0"
serde_json = "1.0.78"
tokio = { version = "1.17.0", features = ["full"] }
tower-lsp-server = { version = "0.22.0", features = ["proposed"] }
serde = { version = "1.0", features = ["derive"] }
dashmap = "5.1.0"
log = "0.4.14"
im-rc = "15.0.0"
foundry-compilers = "0.17.3"
revm-inspectors = { version = "0.29.0", features = ["serde"] }
alloy-primitives = "1.2.0"
alloy-sol-types = "1.2.0"
alloy-provider = { version = "1.0.23", features = [
"anvil-node",
"trace-api",
"debug-api",
] }
alloy-node-bindings = "1.0.23"
alloy-contract = "1.0.23"
alloy-rpc-types = "1.0.23"
alloy-rpc-types-trace = "1.0.23"
alloy-rpc-types-debug = "1.0.23"
alloy-transport = "1.0.23"
alloy-transport-http = "1.0.23"
lsp-types = "0.97.0"
eyre = "0.6"
rayon = "1.8"
rustc-hash = "1.1"
semver = "1"
dap = "0.4.1-alpha1"
clap = { version = "4.5.16", features = ["derive"] }
solang-parser = { git = "http://github.com/ferranbt/solang", rev = "99859e24e85f657b6e9b74aea02d354505b1069e" }
solang = { git = "http://github.com/ferranbt/solang", rev = "99859e24e85f657b6e9b74aea02d354505b1069e", default-features = false }
forge-fmt = "0.2.0"
anstream = "0.6.18"
arbitrary = { version = "1", features = ["derive"] }
getrandom = "0.2"
rand = "0.8"
rust-lapper = { version = "1.1" }
itertools = ">=0.10, <=0.13"
num-traits = "0.2"
hex = "0.4"
tracing = "0.1"
tracing-subscriber = "0.3"
thiserror = "1.0"
slice-group-by = "0.3.1"
shellexpand = "3.1.1"
pprof = { version = "0.15.0", features = ["flamegraph", "frame-pointer", "prost-codec"] }
regex = "1.10"
pathdiff = "0.2"
# solang-parser = { path = "../solang/solang-parser" }
# solang = { path = "../solang", default-features = false }
[build-dependencies]
built = { version = "0.7.1", features = ["git2", "chrono"] }