2024-09-30 19:33:22 +00:00
|
|
|
[workspace]
|
|
|
|
|
2024-06-26 19:31:01 +00:00
|
|
|
[package]
|
2024-07-11 13:31:46 +00:00
|
|
|
name = "quartz-app-transfers-enclave"
|
2024-06-26 19:31:01 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2024-07-11 13:31:46 +00:00
|
|
|
authors = ["Informal Systems <hello@informal.systems>"]
|
2024-07-18 23:34:31 +00:00
|
|
|
default-run = "quartz-app-transfers-enclave"
|
2024-06-26 19:31:01 +00:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "encrypt"
|
|
|
|
path = "bin/encrypt.rs"
|
|
|
|
|
2024-07-18 23:34:31 +00:00
|
|
|
[features]
|
2024-07-30 17:55:52 +00:00
|
|
|
mock-sgx = ["quartz-common/mock-sgx-cw", "quartz-common/mock-sgx-enclave"]
|
2024-08-08 10:25:56 +00:00
|
|
|
default = []
|
2024-07-18 23:34:31 +00:00
|
|
|
|
2024-06-26 19:31:01 +00:00
|
|
|
[dependencies]
|
|
|
|
# external
|
2024-09-18 20:04:33 +00:00
|
|
|
async-trait = "0.1.81"
|
|
|
|
anyhow = { version = "1.0.86" }
|
|
|
|
base64 = "0.22.1"
|
2024-10-01 20:13:39 +00:00
|
|
|
clap = { version = "4.1.8", default-features = false, features = [
|
|
|
|
"derive",
|
|
|
|
"std",
|
|
|
|
] }
|
2024-08-28 23:45:09 +00:00
|
|
|
color-eyre = { version = "0.6.2", default-features = false }
|
|
|
|
ecies = { version = "0.2.3", default-features = false, features = ["pure"] }
|
|
|
|
hex = { version = "0.4.3", default-features = false }
|
2024-10-01 20:13:39 +00:00
|
|
|
k256 = { version = "0.13.2", default-features = false, features = [
|
|
|
|
"ecdsa",
|
|
|
|
"alloc",
|
|
|
|
] }
|
2024-09-30 19:33:22 +00:00
|
|
|
prost = { version = "0.13.1", default-features = false }
|
2024-08-28 23:45:09 +00:00
|
|
|
serde = { version = "1.0.203", default-features = false, features = ["derive"] }
|
2024-10-01 20:13:39 +00:00
|
|
|
serde_json = { version = "1.0.94", default-features = false, features = [
|
|
|
|
"alloc",
|
|
|
|
] }
|
2024-08-28 23:45:09 +00:00
|
|
|
sha2 = { version = "0.10.8", default-features = false }
|
2024-09-18 20:04:33 +00:00
|
|
|
reqwest = "0.12.7"
|
2024-08-28 23:45:09 +00:00
|
|
|
thiserror = { version = "1.0.49", default-features = false }
|
2024-10-01 20:13:39 +00:00
|
|
|
tokio = { version = "1.39.2", default-features = false, features = [
|
|
|
|
"macros",
|
|
|
|
"rt",
|
|
|
|
] }
|
|
|
|
tonic = { version = "0.12.1", default-features = false, features = [
|
|
|
|
"codegen",
|
|
|
|
"prost",
|
|
|
|
"transport",
|
|
|
|
] }
|
2024-09-18 20:04:33 +00:00
|
|
|
tracing = "0.1.39"
|
|
|
|
futures-util = "0.3.30"
|
2024-07-11 13:31:46 +00:00
|
|
|
|
|
|
|
# cosmos
|
2024-09-30 19:33:22 +00:00
|
|
|
cosmrs = { version = "0.17.0", default-features = false }
|
2024-10-01 20:13:39 +00:00
|
|
|
cosmwasm-std = { version = "2.1.1", default-features = false, features = [
|
|
|
|
"std",
|
|
|
|
] }
|
2024-08-28 23:45:09 +00:00
|
|
|
tendermint = { version = "=0.38.1", default-features = false }
|
2024-09-18 20:04:33 +00:00
|
|
|
tendermint-rpc = { version = "=0.38.1", default-features = false }
|
2024-10-01 20:13:39 +00:00
|
|
|
tendermint-light-client = { version = "=0.38.1", default-features = false, features = [
|
|
|
|
"rust-crypto",
|
|
|
|
] }
|
2024-08-28 23:45:09 +00:00
|
|
|
transfers-contract = { path = "../contracts", default-features = false }
|
2024-06-26 19:31:01 +00:00
|
|
|
|
2024-07-30 17:55:52 +00:00
|
|
|
# quartz
|
2024-10-01 20:13:39 +00:00
|
|
|
# TODO: Until the repo is public, let's use the relative path
|
|
|
|
# quartz-common = { git = "ssh://git@github.com/informalsystems/cycles-quartz.git", features=["full"] }
|
|
|
|
# wasmd-client = { git = "ssh://git@github.com/informalsystems/cycles-quartz.git" }
|
|
|
|
# tm-prover = { git = "ssh://git@github.com/informalsystems/cycles-quartz.git" }
|
|
|
|
cw-client = { path = "../../../crates/utils/cw-client", default-features = false }
|
|
|
|
quartz-common = { path = "../../../crates/common", features = ["full"] }
|
|
|
|
quartz-tm-prover = { path = "../../../crates/utils/tm-prover", default-features = false }
|
2024-07-30 17:55:52 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-08-08 10:25:56 +00:00
|
|
|
cw-multi-test = "2.1.0"
|
2024-07-30 17:55:52 +00:00
|
|
|
|
2024-06-26 19:31:01 +00:00
|
|
|
[build-dependencies]
|
2024-10-01 20:13:39 +00:00
|
|
|
tonic-build = { version = "0.12.1", default-features = false, features = [
|
|
|
|
"prost",
|
|
|
|
"transport",
|
|
|
|
] }
|