-
Notifications
You must be signed in to change notification settings - Fork 47
/
Cargo.toml
65 lines (57 loc) · 1.96 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
[workspace]
members = ["crates/artifacts/*", "crates/core", "crates/compilers"]
resolver = "2"
[workspace.package]
authors = ["Foundry Maintainers"]
version = "0.12.3"
rust-version = "1.70"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/foundry-rs/compilers"
homepage = "https://github.com/foundry-rs/compilers"
documentation = "https://docs.rs/foundry-compilers"
description = "Utilities for working with EVM language compilers"
keywords = ["foundry", "solidity", "solc", "ethereum", "ethers"]
edition = "2021"
exclude = [".github/", "scripts/", "test-data/"]
[workspace.lints.clippy]
dbg-macro = "warn"
manual-string-new = "warn"
uninlined-format-args = "warn"
use-self = "warn"
[workspace.lints.rust]
rust-2018-idioms = "deny"
# unreachable-pub = "warn"
unused-must-use = "deny"
[workspace.lints.rustdoc]
all = "warn"
[workspace.dependencies]
foundry-compilers = { path = "crates/compilers", version = "0.12.3" }
foundry-compilers-artifacts = { path = "crates/artifacts/artifacts", version = "0.12.3" }
foundry-compilers-artifacts-solc = { path = "crates/artifacts/solc", version = "0.12.3" }
foundry-compilers-artifacts-vyper = { path = "crates/artifacts/vyper", version = "0.12.3" }
foundry-compilers-core = { path = "crates/core", version = "0.12.3" }
alloy-json-abi = { version = "0.8", features = ["serde_json"] }
alloy-primitives = { version = "0.8", features = ["serde", "rand"] }
cfg-if = "1.0"
dunce = "1.0"
md-5 = "0.10"
memmap2 = "0.9"
path-slash = "0.2"
rayon = "1.8"
regex = "1.10"
semver = { version = "1.0", features = ["serde"] }
serde = { version = "1", features = ["derive", "rc"] }
serde_json = "1.0"
similar-asserts = "1"
solar-parse = { version = "=0.1.0", default-features = false }
svm = { package = "svm-rs", version = "0.5", default-features = false }
tempfile = "3.9"
thiserror = "2"
tracing = "0.1"
walkdir = "2.5"
yansi = "1.0"
# async
futures-util = "0.3"
tokio = { version = "1.35", features = ["rt-multi-thread"] }
snapbox = "0.6.9"