forked from alloy-rs/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
64 lines (57 loc) · 2.15 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
[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.package]
version = "0.3.2"
edition = "2021"
rust-version = "1.65"
authors = ["Alloy Contributors"]
license = "MIT OR Apache-2.0"
homepage = "https://github.com/alloy-rs/core"
repository = "https://github.com/alloy-rs/core"
exclude = ["benches/", "tests/"]
[workspace.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[workspace.dependencies]
# workspace crates
alloy-dyn-abi = { version = "0.3.2", path = "crates/dyn-abi", default-features = false }
alloy-json-abi = { version = "0.3.2", path = "crates/json-abi", default-features = false }
alloy-primitives = { version = "0.3.2", path = "crates/primitives", default-features = false }
alloy-sol-macro = { version = "0.3.2", path = "crates/sol-macro", default-features = false }
alloy-sol-type-parser = { version = "0.3.2", path = "crates/sol-type-parser", default-features = false }
alloy-sol-types = { version = "0.3.2", path = "crates/sol-types", default-features = false }
syn-solidity = { version = "0.3.2", path = "crates/syn-solidity", default-features = false }
# serde
serde = { version = "1.0", default-features = false, features = ["alloc"] }
serde_json = { version = "1.0", default-features = false, features = ["alloc"] }
# macros
proc-macro2 = "1.0"
quote = "1.0"
syn = "2.0"
cfg-if = "1.0.0"
derive_more = "0.99"
hex-literal = "0.4"
paste = "1.0"
strum = { version = "0.25", features = ["derive"] }
num_enum = "0.7"
thiserror = "1.0"
# misc
alloy-rlp = { version = "0.3", default-features = false }
alloy-rlp-derive = { version = "0.3", default-features = false }
arbitrary = "1.3"
arrayvec = { version = "0.7", default-features = false }
bincode = "1.3"
bytes = { version = "1", default-features = false }
criterion = "0.5"
derive_arbitrary = "1.3"
getrandom = "0.2"
hex = { package = "const-hex", version = "1.5", default-features = false, features = ["alloc"] }
itoa = "1"
once_cell = "1"
proptest = "1"
proptest-derive = "0.4"
rand = { version = "0.8", default-features = false }
ruint = { version = "1.10.1", default-features = false, features = ["alloc"] }
ruint-macro = { version = "1", default-features = false }
tiny-keccak = "2.0"