2023-11-29 21:13:20 +00:00
|
|
|
[package]
|
|
|
|
name = "cw-tee-mtcs"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
2024-05-30 00:00:43 +00:00
|
|
|
exclude = ["contract.wasm", "hash.txt"]
|
2023-11-29 21:13:20 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
opt-level = 3
|
|
|
|
debug = false
|
|
|
|
rpath = false
|
|
|
|
lto = true
|
|
|
|
debug-assertions = false
|
|
|
|
codegen-units = 1
|
|
|
|
panic = 'abort'
|
|
|
|
incremental = false
|
|
|
|
overflow-checks = true
|
|
|
|
|
|
|
|
[features]
|
|
|
|
backtraces = ["cosmwasm-std/backtraces"]
|
|
|
|
|
|
|
|
[dependencies]
|
2024-05-30 00:00:43 +00:00
|
|
|
# external
|
2024-07-02 12:19:15 +00:00
|
|
|
getrandom = { version = "0.2", features = ["js"] }
|
2023-12-05 17:03:43 +00:00
|
|
|
hex = { version = "0.4.3", default-features = false }
|
|
|
|
k256 = { version = "0.13.2", default-features = false, features = ["ecdsa"] }
|
2023-11-29 21:13:20 +00:00
|
|
|
schemars = "0.8.15"
|
|
|
|
serde = { version = "1.0.189", default-features = false, features = ["derive"] }
|
2024-06-20 19:56:01 +00:00
|
|
|
sha2 = "0.10.8"
|
|
|
|
serde_json = "1.0.117"
|
2023-11-29 21:13:20 +00:00
|
|
|
thiserror = { version = "1.0.49" }
|
|
|
|
|
2024-05-30 00:00:43 +00:00
|
|
|
# cosmwasm
|
|
|
|
cosmwasm-schema = "1.5.0"
|
|
|
|
cosmwasm-std = { version = "1.5.0", features = ["cosmwasm_1_3"] }
|
|
|
|
cw-storage-plus = "1.1.0"
|
|
|
|
cw20-base = { version = "1.1.1", features = ["library"] }
|
|
|
|
cw20 = "1.1.1"
|
|
|
|
cw2 = "1.1.1"
|
|
|
|
|
|
|
|
# quartz
|
2024-05-16 13:18:47 +00:00
|
|
|
quartz-cw = { path = "../../../../cosmwasm/packages/quartz-cw" }
|
2024-03-19 21:19:38 +00:00
|
|
|
|
2023-11-29 21:13:20 +00:00
|
|
|
[dev-dependencies]
|
|
|
|
cw-multi-test = "0.17.0"
|
2024-03-19 21:19:38 +00:00
|
|
|
serde_json = "1.0.113"
|