-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
82 lines (73 loc) · 2.12 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[package]
name = "ninelives"
version = "0.1.0"
edition = "2021"
rust-version = "1.83"
[lib]
name = "lib9lives"
edition = "2021"
[[bin]]
name = "ninelives"
[profile.release]
codegen-units = 1
opt-level = "z"
strip = true
lto = true
debug = false
rpath = false
debug-assertions = false
incremental = false
[profile.dev]
codegen-units = 1
panic = "unwind"
opt-level = "z"
incremental = false
[dependencies]
stylus-sdk = "=0.6.0"
tiny-keccak = "2.0.2"
num-traits = { version = "0.2.19", default-features = false }
alloy-sol-types = { version = "=0.7.6", default-features = false }
alloy-sol-macro = { version = "=0.7.6", default-features = false }
alloy-core = { version = "=0.7.6", default-features = false }
alloy-primitives = { version = "=0.7.6", default-features = false }
array-concat = "0.5.3"
const-hex = { version = "1.12.0", default-features = false }
paste = "1.0.15"
rust_decimal = { version = "1.36.0", default-features = false, features = ["maths"] }
keccak-const = "0.2.0"
alloy-sol-macro-expander = "=0.7.6"
alloy-sol-macro-input = "=0.7.6"
strum = { version = "0.26.3", default-features = false, features = ["derive"] }
mutants = "0.0.3"
[dev-dependencies]
proptest = "1.5.0"
const-hex = { version = "1.12.0", features = ["alloc"] }
rust_decimal_macros = "1.36.0"
serde_json = "1.0.133"
serde = { version = "1.0.215", features = ["derive"] }
arrayvec = "0.7.6"
map-macro = "0.3.0"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
proptest = "1.5.0"
getrandom = "0.2.15"
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
alloy-primitives = { version = "0.7.6", features = ["getrandom"] }
rust_decimal = { version = "1.36.0", default-features = false, features = ["maths", "proptest"] }
prettytable-rs = "0.10.0"
[features]
contract-factory-1 = []
contract-factory-2 = []
contract-trading-mint = []
contract-trading-extras = []
contract-trading-quotes = []
contract-trading-price = []
contract-lockup = []
contract-infra-market = []
contract-beauty-contest = []
testing-dbg = []
testing = []
harness-stylus-interpreter = []
trading-backend-amm = []
trading-backend-dpm = []
contract-infra-market-testing = []
e2e-adjust-time = []