Update Cargo.lock
This commit is contained in:
parent
5f11d004b0
commit
c31b1c8e69
4 changed files with 521 additions and 194 deletions
710
Cargo.lock
generated
710
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
|
@ -15,6 +15,7 @@ serde_json = "1.0.94"
|
||||||
tonic = "0.11"
|
tonic = "0.11"
|
||||||
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
|
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
|
||||||
|
|
||||||
quartz-proto = { path = "../../utils/quartz-proto" }
|
|
||||||
quartz-cw = { path = "../../../bisenzone-cw-mvp/packages/quartz-cw" }
|
quartz-cw = { path = "../../../bisenzone-cw-mvp/packages/quartz-cw" }
|
||||||
|
quartz-proto = { path = "../../utils/quartz-proto" }
|
||||||
|
quartz-relayer = { path = "../../utils/quartz-relayer" }
|
||||||
quartz-tee-ra = { git = "ssh://git@github.com/informalsystems/bisenzone-cw-mvp.git", branch = "hu55a1n1/11-use-quartz" }
|
quartz-tee-ra = { git = "ssh://git@github.com/informalsystems/bisenzone-cw-mvp.git", branch = "hu55a1n1/11-use-quartz" }
|
||||||
|
|
|
@ -21,7 +21,6 @@ fn parse_mr_enclave(s: &str) -> Result<MrEnclave> {
|
||||||
Ok(HexBinary::from_hex(s)?.to_array()?)
|
Ok(HexBinary::from_hex(s)?.to_array()?)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#[derive(Debug, Parser)]
|
#[derive(Debug, Parser)]
|
||||||
#[command(author, version, about, long_about = None)]
|
#[command(author, version, about, long_about = None)]
|
||||||
pub struct Cli {
|
pub struct Cli {
|
||||||
|
|
|
@ -16,7 +16,6 @@
|
||||||
|
|
||||||
mod cli;
|
mod cli;
|
||||||
mod server;
|
mod server;
|
||||||
mod types;
|
|
||||||
|
|
||||||
use std::time::Duration;
|
use std::time::Duration;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue