cycles-quartz/enclaves/quartz/Cargo.toml

35 lines
1.3 KiB
TOML
Raw Normal View History

2024-02-19 19:13:34 +00:00
[package]
name = "quartz-enclave"
version = "0.1.0"
edition = "2021"
[dependencies]
2024-02-22 20:48:13 +00:00
clap = { version = "4.1.8", features = ["derive"] }
color-eyre = "0.6.2"
2024-05-07 22:05:58 +00:00
cosmrs = "0.16.0"
cosmwasm-std = "1.5.2"
2024-02-29 13:17:52 +00:00
ecies = { version = "0.2.3", default-features = false, features = ["pure"] }
2024-02-27 23:59:25 +00:00
k256 = { version = "0.13.2", default-features = false, features = ["ecdsa", "alloc"] }
2024-02-20 11:27:10 +00:00
prost = "0.12"
2024-02-27 23:29:06 +00:00
rand = "0.8.5"
2024-02-22 20:48:13 +00:00
serde = { version = "1.0.189", features = ["derive"] }
serde_json = "1.0.94"
2024-02-27 23:29:06 +00:00
tendermint = "0.34.0"
tendermint-light-client = "0.34.0"
2024-02-20 11:27:10 +00:00
tonic = "0.11"
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
2024-02-29 14:54:56 +00:00
cw-proof = { path = "../../utils/cw-proof" }
2024-05-07 22:05:58 +00:00
cw-tee-mtcs = { git = "ssh://git@github.com/informalsystems/bisenzone-cw-mvp.git", branch = "hu55a1n1/ljubljana-retreat" }
cycles-sync = { path = "../../utils/cycles-sync" }
2024-02-29 13:17:52 +00:00
mtcs = { git = "ssh://git@github.com/informalsystems/mtcs.git" }
2024-05-07 22:05:58 +00:00
quartz-cw = { git = "ssh://git@github.com/informalsystems/bisenzone-cw-mvp.git", branch = "hu55a1n1/ljubljana-retreat" }
quartz-proto = { path = "../../utils/quartz-proto" }
quartz-relayer = { path = "../../utils/quartz-relayer" }
2024-05-07 22:05:58 +00:00
quartz-tee-ra = { git = "ssh://git@github.com/informalsystems/bisenzone-cw-mvp.git", branch = "hu55a1n1/ljubljana-retreat" }
2024-02-29 14:54:56 +00:00
tm-stateless-verifier = { path = "../../utils/tm-stateless-verifier" }
2024-05-07 22:05:58 +00:00
hex = "0.4.3"
2024-02-29 11:30:25 +00:00
[build-dependencies]
tonic-build = "0.11"