-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (31 loc) · 931 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
[package]
name = "cw-my-ics-name"
version = "0.1.0"
edition = "2021"
# Linkage options. More information: https://doc.rust-lang.org/reference/linkage.html
[lib]
crate-type = ["cdylib", "rlib"]
[features]
# Use library feature to disable all instantiate/execute/query exports
library = []
# Optimizations in release builds. More information: https://doc.rust-lang.org/cargo/reference/profiles.html
[profile.release]
opt-level = "z"
debug = false
rpath = false
lto = true
debug-assertions = false
codegen-units = 1
panic = 'abort'
incremental = false
overflow-checks = true
[dependencies]
cosmwasm-schema = "1.5.8"
cosmwasm-std = "1.5.8"
cw-storage-plus = "1.2.0"
cw721 = { git = "https://github.com/public-awesome/cw-nfts", tag = "v0.19.0", version = "0.19.0" }
sha2 = "0.10.8"
thiserror = "1.0.63"
[dev-dependencies]
cw-multi-test = "1.2.0"
cw-my-nameservice = { path = "../cw-my-nameservice", package = "cw-my-nameservice" }