cycles-quartz/apps/mtcs/contracts/cw-tee-mtcs/Cargo.toml

57 lines
1.3 KiB
TOML
Raw Normal View History

2023-11-29 21:13:20 +00:00
[package]
name = "cw-tee-mtcs"
version = "0.1.0"
edition = "2021"
authors = ["Informal Systems <hello@informal.systems>"]
2024-05-30 00:00:43 +00:00
exclude = ["contract.wasm", "hash.txt"]
2023-11-29 21:13:20 +00:00
[[bin]]
name = "schema"
path = "bin/schema.rs"
2023-11-29 21:13:20 +00:00
[lib]
crate-type = ["cdylib", "rlib"]
[profile.release]
opt-level = "z"
2023-11-29 21:13:20 +00:00
debug = false
rpath = false
lto = true
debug-assertions = false
codegen-units = 1
panic = 'abort'
incremental = false
overflow-checks = true
[features]
library = []
mock-sgx = ["quartz-common/mock-sgx-cw"]
2023-11-29 21:13:20 +00:00
[dependencies]
2024-05-30 00:00:43 +00:00
# external
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"
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 = { version = "2.1.1", default-features = false }
cosmwasm-std = { version = "2.1.1", default-features = false, features = ["std", "abort"] }
cw-storage-plus = { version = "2.0.0", default-features = false }
cw20-base = { version = "2.0.0", features = ["library"] }
cw20 = "2.0.0"
cw2 = "2.0.0"
2024-05-30 00:00:43 +00:00
# quartz
quartz-common = { path = "../../../../core/quartz-common", features = ["contract"] }
2024-03-19 21:19:38 +00:00
# patch indirect deps
getrandom = { version = "0.2.15", features = ["js"] }
2023-11-29 21:13:20 +00:00
[dev-dependencies]
cosmwasm-schema = "2.1.1"
cw-multi-test = "2.1.0"
serde_json = "1.0.113"