2024-02-20 16:42:04 +00:00
|
|
|
[package]
|
|
|
|
name = "quartz-relayer"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
2024-02-23 22:27:29 +00:00
|
|
|
clap = { version = "4.1.8", features = ["derive"] }
|
2024-02-27 00:15:42 +00:00
|
|
|
cosmos-sdk-proto = "0.16.0"
|
|
|
|
cosmrs = { version = "=0.11.0", features = ["cosmwasm"] }
|
2024-05-07 22:05:58 +00:00
|
|
|
cosmwasm-std = "1.5.2"
|
2024-02-27 00:15:42 +00:00
|
|
|
displaydoc = { version = "0.2.3", default-features = false }
|
2024-02-28 18:45:02 +00:00
|
|
|
ecies = { version = "0.2.6", 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-23 22:27:29 +00:00
|
|
|
serde = { version = "1.0.189", features = ["derive"] }
|
|
|
|
serde_json = "1.0.94"
|
2024-02-27 00:15:42 +00:00
|
|
|
subtle-encoding = { version = "0.5.1", features = ["bech32-preview"] }
|
2024-02-26 21:57:54 +00:00
|
|
|
tempfile = "3"
|
2024-02-27 00:15:42 +00:00
|
|
|
tendermint = { version = "0.29.0", features = ["secp256k1"] }
|
|
|
|
thiserror = "1.0.38"
|
|
|
|
tonic = "=0.8.3"
|
2024-02-20 16:42:04 +00:00
|
|
|
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
|
|
|
|
|
2024-05-07 22:20:11 +00:00
|
|
|
quartz-cw = { git = "ssh://git@github.com/informalsystems/bisenzone-cw-mvp.git" }
|
|
|
|
quartz-tee-ra = { git = "ssh://git@github.com/informalsystems/bisenzone-cw-mvp.git" }
|
2024-02-26 21:41:12 +00:00
|
|
|
quartz-proto = { path = "../../utils/quartz-proto" }
|