2023-11-29 21:13:20 +00:00
|
|
|
[package]
|
|
|
|
name = "cw-tee-mtcs"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2024-07-11 13:31:46 +00:00
|
|
|
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
|
|
|
|
2024-08-06 20:50:11 +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 = 3
|
|
|
|
debug = false
|
|
|
|
rpath = false
|
|
|
|
lto = true
|
|
|
|
debug-assertions = false
|
|
|
|
codegen-units = 1
|
|
|
|
panic = 'abort'
|
|
|
|
incremental = false
|
|
|
|
overflow-checks = true
|
|
|
|
|
2024-07-18 23:34:31 +00:00
|
|
|
[features]
|
2024-07-30 17:55:52 +00:00
|
|
|
library = []
|
|
|
|
mock-sgx = ["quartz-common/mock-sgx-cw"]
|
2024-07-18 23:34:31 +00:00
|
|
|
|
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"
|
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
|
2024-08-08 10:25:56 +00:00
|
|
|
cosmwasm-schema = { version = "2.1.1", default-features = false }
|
|
|
|
cosmwasm-std = { version = "2.1.1", default-features = false, features = ["std"] }
|
2024-07-11 13:31:46 +00:00
|
|
|
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
|
2024-08-08 10:25:56 +00:00
|
|
|
quartz-common = { path = "../../../../core/quartz-common", features = ["contract"]}
|
2024-03-19 21:19:38 +00:00
|
|
|
|
2024-07-11 13:31:46 +00:00
|
|
|
# patch indirect deps
|
|
|
|
getrandom = { version = "0.2.15", features = ["js"] }
|
|
|
|
|
2023-11-29 21:13:20 +00:00
|
|
|
[dev-dependencies]
|
2024-08-06 20:50:11 +00:00
|
|
|
cosmwasm-schema = "2.1.1"
|
2024-08-08 10:25:56 +00:00
|
|
|
cw-multi-test = "2.1.0"
|
|
|
|
serde_json = "1.0.113"
|