-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (36 loc) · 890 Bytes
/
Cargo.toml
File metadata and controls
44 lines (36 loc) · 890 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
31
32
33
34
35
36
37
38
39
40
41
42
43
[package]
name = "stylus-transferable-erc721"
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"
[dependencies]
alloy-primitives = { version = "1.3.1", default-features = false, features = ["tiny-keccak"] }
alloy-sol-types = "=1.3.1"
mini-alloc = "1.0.0"
stylus-sdk = "0.10.2"
[dev-dependencies]
stylus-test = "0.10.2"
alloy-provider = ">=1.0.1, <1.7.0"
alloy-tx-macros = ">=1.0, <1.1.0"
alloy-primitives = { version = "1.3.1", features = ["arbitrary"] }
arbitrary = { version = "1.4", features = ["derive"] }
hex-literal = "0.4"
[features]
default = []
nft = []
verifier = []
vkeys = []
export-abi = ["stylus-sdk/export-abi"]
debug = ["stylus-sdk/debug"]
contract-client-gen = []
[[bin]]
name = "stylus-transferable-erc721"
path = "src/main.rs"
[lib]
crate-type = ["lib", "cdylib"]
[profile.release]
codegen-units = 1
strip = true
lto = true
panic = "abort"
opt-level = "z"