cycles-quartz/apps/mtcs/contracts/cw-tee-mtcs/Cargo.toml
Shoaib Ahmed 4b3630adf3
Mock attestation (#82)
Co-authored-by: Ethan Buchman <ethan@coinculture.info>
2024-07-19 01:34:31 +02:00

51 lines
1.2 KiB
TOML

[package]
name = "cw-tee-mtcs"
version = "0.1.0"
edition = "2021"
authors = ["Informal Systems <hello@informal.systems>"]
exclude = ["contract.wasm", "hash.txt"]
[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]
mock-sgx = ["quartz-cw/mock-sgx"]
[dependencies]
# external
hex = { version = "0.4.3", default-features = false }
k256 = { version = "0.13.2", default-features = false, features = ["ecdsa"] }
schemars = "0.8.15"
sha2 = "0.10.8"
serde_json = "1.0.117"
thiserror = { version = "1.0.49" }
# cosmwasm
cosmwasm-schema = { version = "2.0.0", default-features = false }
cosmwasm-std = { version = "2.0.0", default-features = false, features = ["std"] }
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"
# quartz
quartz-cw = { path = "../../../../cosmwasm/packages/quartz-cw" }
# patch indirect deps
getrandom = { version = "0.2.15", features = ["js"] }
[dev-dependencies]
cw-multi-test = "2.0.0"
serde_json = "1.0.113"