diff --git a/Cargo.lock b/Cargo.lock index 563f3b694c..67bb0fff56 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1287,9 +1287,9 @@ dependencies = [ [[package]] name = "cnidarium" -version = "0.81.0" +version = "0.82.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f77ae2f37b1ca16db2524f7d1f1a14416372dc2594635d18a6357b609c4164c8" +checksum = "f93ab30a485dceb9aca3210c03fbbecadd14837a94aef19deb594eef9cb5ced1" dependencies = [ "anyhow", "async-trait", @@ -4372,6 +4372,7 @@ dependencies = [ "bytes", "camino", "clap", + "cnidarium", "colored", "colored_json", "comfy-table", diff --git a/Cargo.toml b/Cargo.toml index e8eb1e6d5f..f368d816bc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -135,7 +135,7 @@ camino = { version = "1" } chacha20poly1305 = { version = "0.9.0" } chrono = { default-features = false, version = "0.4" } clap = { version = "3.2" } -cnidarium = { version = "0.81", default-features = false} +cnidarium = { version = "0.82", default-features = false} cnidarium-component = { default-features = false, path = "crates/cnidarium-component" } cometindex = { path = "crates/util/cometindex" } criterion = { version = "0.4" } diff --git a/crates/bin/pcli/Cargo.toml b/crates/bin/pcli/Cargo.toml index 870bebb274..744b5f3ebc 100644 --- a/crates/bin/pcli/Cargo.toml +++ b/crates/bin/pcli/Cargo.toml @@ -39,6 +39,7 @@ bincode = {workspace = true} blake2b_simd = {workspace = true} bytes = {workspace = true} camino = {workspace = true} +cnidarium = {workspace = true, features = ["rpc"] } clap = {workspace = true, features = ["derive", "env"]} colored = "2.1.0" colored_json = "4.1" diff --git a/crates/bin/pcli/src/command/query.rs b/crates/bin/pcli/src/command/query.rs index 119d33453b..6d64098d75 100644 --- a/crates/bin/pcli/src/command/query.rs +++ b/crates/bin/pcli/src/command/query.rs @@ -1,4 +1,4 @@ -use anyhow::{anyhow, Context, Result}; +use anyhow::{anyhow, Result}; pub(crate) mod auction; mod chain; diff --git a/crates/proto/Cargo.toml b/crates/proto/Cargo.toml index 36d1d5a681..7fbfa9bbe9 100644 --- a/crates/proto/Cargo.toml +++ b/crates/proto/Cargo.toml @@ -24,7 +24,7 @@ async-trait = {workspace = true} bech32 = {workspace = true} bytes = {workspace = true, features = ["serde"]} chrono = {workspace = true, optional = true, default-features = false, features = ["serde"]} -cnidarium = {workspace = true, optional = true, default-features = true} +cnidarium = {workspace = true, optional = true, default-features = true, features = ["rpc"]} decaf377-fmd = {workspace = true} decaf377-rdsa = {workspace = true} futures = {workspace = true}