-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (26 loc) · 769 Bytes
/
Cargo.toml
File metadata and controls
30 lines (26 loc) · 769 Bytes
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
[package]
name = "ctf-utils"
version = "0.1.0"
edition = "2024"
[features]
default = ["std"]
std = [
"alloy-primitives/std",
"dep:once_cell",
"num-bigint/std",
"num-traits/std"
]
serde = ["dep:serde", "alloy-primitives/serde"]
[dependencies]
alloy-primitives = { version = "1.4.1", default-features = false, features = ["std", "tiny-keccak"] }
once_cell = { version = "1.19.0", optional = true }
serde = { version = "1.0", features = ["derive"], optional = true }
thiserror = "1.0"
num-bigint = { version = "0.4", default-features = false, features = ["std"] }
num-traits = { version = "0.2", default-features = false }
[dev-dependencies]
proptest = "1.4"
[[bin]]
name = "ctf-utils-cli"
path = "src/bin/ctf-utils-cli.rs"
required-features = ["std"]