-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (33 loc) · 884 Bytes
/
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
[package]
name = "lit-precompiles"
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
keywords = ["arbitrum", "ethereum", "stylus", "alloy"]
[dependencies]
alloy-primitives = "0.7.5"
alloy-sol-types = "0.7.5"
hex = "0.4.3"
hd-keys-curves-wasm = { path = "../../Projects/hd-keys-curves-wasm" }
p256 = { version = "0.13", default-features = false, features = ["arithmetic"] }
k256 = { version = "0.13", default-features = false, features = ["arithmetic"] }
mini-alloc = "0.4.2"
stylus-sdk = "0.5.0"
[dev-dependencies]
tokio = { version = "1.38.0", features = ["full"] }
ethers = "2.0"
eyre = "0.6.12"
[features]
export-abi = ["stylus-sdk/export-abi"]
debug = ["stylus-sdk/debug"]
[[bin]]
name = "stylus-hello-world"
path = "src/main.rs"
[lib]
crate-type = ["lib", "cdylib"]
[profile.release]
codegen-units = 1
strip = true
lto = true
panic = "abort"
opt-level = "s"