-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathCargo.toml
More file actions
93 lines (85 loc) · 2.1 KB
/
Cargo.toml
File metadata and controls
93 lines (85 loc) · 2.1 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
92
93
[workspace]
members = [
"solx",
"solx-slang",
"solx-core",
"solx-standard-json",
"solx-evm-assembly",
"solx-yul",
"solx-codegen-evm",
"solx-utils",
"solx-dev",
"solx-tester",
"solx-benchmark-converter",
"solx-solc-test-adapter",
"solx-compiler-downloader",
"solx-mlir",
]
# IMPORTANT: solx-slang and solx-mlir are intentionally excluded from
# default-members. They depend on inkwell with `llvm21-1-no-llvm-linking`,
# while solx-codegen-evm uses inkwell with `llvm21-1` (links LLVM). Cargo
# feature unification would merge these into one inkwell with conflicting
# features, causing linker failures. Use `cargo test-slang` to test them.
default-members = [
"solx",
"solx-core",
"solx-standard-json",
"solx-evm-assembly",
"solx-yul",
"solx-codegen-evm",
"solx-utils",
"solx-dev",
"solx-tester",
"solx-benchmark-converter",
"solx-solc-test-adapter",
"solx-compiler-downloader",
]
resolver = "2"
[workspace.package]
authors = [
"Matter Labs <alex@nomic.foundation>",
"Nomic Foundation <alex@nomic.foundation>",
]
edition = "2024"
version = "0.1.4"
[workspace.dependencies]
# Error handling
anyhow = "1.0"
thiserror = "2.0"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = ["arbitrary_precision"] }
serde_yaml = "0.9"
ciborium = "0.2"
# CLI
clap = { version = "4.6", features = ["derive"] }
colored = "3.1"
# Concurrency
rayon = "1.11"
# Utilities
semver = { version = "1.0", features = ["serde"] }
hex = "0.4"
num = "0.4"
regex = "1.12"
glob = "0.3"
itertools = "0.14"
sha2 = "0.11"
sha3 = "0.11"
md5 = "0.7"
# Testing
[workspace.dependencies.web3]
git = "https://github.com/tomusdrw/rust-web3"
rev = "8d889ae3270508f1e68b6a29bbe51b2bedf7fb1e"
default-features = false
features = ["http-rustls-tls", "test", "signing"]
# LLVM
[workspace.dependencies.inkwell]
git = "https://github.com/NomicFoundation/inkwell"
rev = "4f9f86e15f43dc8555b8b51d4dda01e60f756f22"
default-features = false
features = [
"llvm21-1",
"serde",
"no-libffi-linking",
"target-evm",
]