Move utils/quartz-proto to core/quartz-proto Fix Cargo.toml paths Add default working-directory for cosmwasm CI jobs Fix default working-directory Rename .cargo/config -> config.toml Update working-directory Update cosmwasm workflows Update rust.yml paths Add aliases to cargo config.toml Test working-directory Update cosmwasm CI jobs Use --manifest-path Use dtolnay/rust-toolchain action Fix workflow Remove --locked SSH agent SSH agent for schema Remove unused SSH key Exclude cw-tee-mtcs from rust CI jobs Clippy fix cargo fmt Add CONTRIBUTING.md Update README.md
26 lines
974 B
TOML
26 lines
974 B
TOML
[package]
|
|
name = "quartz-relayer"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
clap = { version = "4.1.8", features = ["derive"] }
|
|
cosmos-sdk-proto = "0.16.0"
|
|
cosmrs = { version = "=0.11.0", features = ["cosmwasm"] }
|
|
cosmwasm-std = "1.5.2"
|
|
displaydoc = { version = "0.2.3", default-features = false }
|
|
ecies = { version = "0.2.6", default-features = false, features = ["pure"] }
|
|
k256 = { version = "0.13.2", default-features = false, features = ["ecdsa", "alloc"] }
|
|
serde = { version = "1.0.189", features = ["derive"] }
|
|
serde_json = "1.0.94"
|
|
subtle-encoding = { version = "0.5.1", features = ["bech32-preview"] }
|
|
tempfile = "3"
|
|
tendermint = { version = "0.29.0", features = ["secp256k1"] }
|
|
thiserror = "1.0.38"
|
|
tonic = "=0.8.3"
|
|
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
|
|
|
|
quartz-cw = { path = "../cosmwasm/packages/quartz-cw" }
|
|
quartz-tee-ra = { path = "../cosmwasm/packages/quartz-tee-ra" }
|
|
quartz-proto = { path = "../core/quartz-proto" }
|