diff --git a/Cargo.lock b/Cargo.lock index 83227329..6abbec9c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -852,7 +852,7 @@ dependencies = [ [[package]] name = "ic-agent" -version = "0.7.0" +version = "0.8.0" dependencies = [ "async-trait", "base32", @@ -886,7 +886,7 @@ dependencies = [ [[package]] name = "ic-asset" -version = "0.2.0" +version = "0.3.0" dependencies = [ "anyhow", "candid", @@ -910,7 +910,7 @@ dependencies = [ [[package]] name = "ic-identity-hsm" -version = "0.3.4" +version = "0.3.5" dependencies = [ "hex", "ic-agent", @@ -923,9 +923,9 @@ dependencies = [ [[package]] name = "ic-types" -version = "0.2.1" +version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "471541b20b3d2bb26dd81ac0c44c66eabeaa2ba3641e96606b6c66f86a035a27" +checksum = "b2c021c11ae1d716f45d783f5764f418a11f12aea1fdc4fc8a2b2242e0dae708" dependencies = [ "base32", "crc32fast", @@ -938,7 +938,7 @@ dependencies = [ [[package]] name = "ic-utils" -version = "0.5.0" +version = "0.6.0" dependencies = [ "async-trait", "candid", @@ -955,7 +955,7 @@ dependencies = [ [[package]] name = "icx" -version = "0.4.0" +version = "0.5.0" dependencies = [ "anyhow", "candid", @@ -975,7 +975,7 @@ dependencies = [ [[package]] name = "icx-asset" -version = "0.2.0" +version = "0.3.0" dependencies = [ "anyhow", "candid", @@ -1001,7 +1001,7 @@ dependencies = [ [[package]] name = "icx-cert" -version = "0.3.0" +version = "0.4.0" dependencies = [ "anyhow", "base64", @@ -1019,7 +1019,7 @@ dependencies = [ [[package]] name = "icx-proxy" -version = "0.5.0" +version = "0.6.0" dependencies = [ "anyhow", "clap", diff --git a/ic-agent/Cargo.toml b/ic-agent/Cargo.toml index 67cd9e94..cf6d2073 100644 --- a/ic-agent/Cargo.toml +++ b/ic-agent/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ic-agent" -version = "0.7.0" +version = "0.8.0" authors = ["DFINITY Stiftung "] edition = "2018" description = "Agent library to communicate with the Internet Computer, following the Public Specification." @@ -20,7 +20,7 @@ byteorder = "1.3.2" garcon = { version = "0.2", features = ["async"] } hex = "0.4.0" http = "0.2.3" -ic-types = "0.2.1" +ic-types = "0.2.2" leb128 = "0.2.4" mime = "0.3.16" openssl = "0.10.36" diff --git a/ic-asset/Cargo.toml b/ic-asset/Cargo.toml index ad6e3744..b81532ed 100644 --- a/ic-asset/Cargo.toml +++ b/ic-asset/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ic-asset" -version = "0.2.0" +version = "0.3.0" authors = ["DFINITY Stiftung "] edition = "2018" description = "Library for storing files in an asset canister." @@ -20,9 +20,9 @@ futures = "0.3.16" futures-intrusive = "0.4.0" garcon = { version = "0.2", features = ["async"] } hex = {version = "0.4.2", features = ["serde"] } -ic-agent = { path = "../ic-agent", version = "0.7", features = [ "pem" ] } -ic-types = { version = "0.2.1", features = [ "serde" ] } -ic-utils = { path = "../ic-utils", version = "0.5" } +ic-agent = { path = "../ic-agent", version = "0.8", features = [ "pem" ] } +ic-types = { version = "0.2.2", features = [ "serde" ] } +ic-utils = { path = "../ic-utils", version = "0.6" } mime = "0.3.16" mime_guess = "2.0.3" openssl = "0.10.32" diff --git a/ic-identity-hsm/Cargo.toml b/ic-identity-hsm/Cargo.toml index 9195d28d..09e79f2f 100644 --- a/ic-identity-hsm/Cargo.toml +++ b/ic-identity-hsm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ic-identity-hsm" -version = "0.3.4" +version = "0.3.5" authors = ["DFINITY Stiftung "] description = "Identity implementation for HSM for the ic-agent package." homepage = "https://docs.rs/ic-identity-hsm" @@ -14,7 +14,7 @@ include = ["src", "Cargo.toml", "../LICENSE", "README.md"] [dependencies] hex = "0.4.2" -ic-agent = { path = "../ic-agent", version = "0.7", features = [ "pem" ] } +ic-agent = { path = "../ic-agent", version = "0.8", features = [ "pem" ] } num-bigint = "0.4.0" openssl = "0.10.30" pkcs11 = "0.5.0" diff --git a/ic-utils/Cargo.toml b/ic-utils/Cargo.toml index ec4a5ac8..b084738d 100644 --- a/ic-utils/Cargo.toml +++ b/ic-utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ic-utils" -version = "0.5.0" +version = "0.6.0" authors = ["DFINITY Stiftung "] edition = "2018" description = "Collection of utilities for Rust, on top of ic-agent, to communicate with the Internet Computer, following the Public Specification." @@ -18,7 +18,7 @@ include = ["src", "Cargo.toml", "../LICENSE", "README.md"] async-trait = "0.1.40" candid = "0.7.4" garcon = { version = "0.2", features = ["async"] } -ic-agent = { path = "../ic-agent", version = "0.7" } +ic-agent = { path = "../ic-agent", version = "0.8" } serde = "1.0.115" serde_bytes = "0.11" strum = "0.21" diff --git a/icx-asset/Cargo.toml b/icx-asset/Cargo.toml index 79043d54..23b55f4f 100644 --- a/icx-asset/Cargo.toml +++ b/icx-asset/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "icx-asset" -version = "0.2.0" +version = "0.3.0" authors = ["DFINITY Stiftung "] edition = "2018" description = "CLI tool to manage assets on an asset canister on the Internet Computer." @@ -22,10 +22,10 @@ clap = "3.0.0-beta.2" delay = "0.3.1" garcon = "0.2.2" humantime = "2.0.1" -ic-agent = { path = "../ic-agent", version = "0.7" } -ic-asset = { path = "../ic-asset", version = "0.2" } -ic-types = "0.2.1" -ic-utils = { path = "../ic-utils", version = "0.5" } +ic-agent = { path = "../ic-agent", version = "0.8" } +ic-asset = { path = "../ic-asset", version = "0.3" } +ic-types = "0.2.2" +ic-utils = { path = "../ic-utils", version = "0.6" } libflate = "1.1.0" num-traits = "0.2" pem = "0.8.1" diff --git a/icx-cert/Cargo.toml b/icx-cert/Cargo.toml index d4fd0675..1e60a299 100644 --- a/icx-cert/Cargo.toml +++ b/icx-cert/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "icx-cert" -version = "0.3.0" +version = "0.4.0" authors = ["DFINITY Stiftung "] edition = "2018" description = "CLI tool to download a document from the Internet Computer and pretty-print the contents of its IC-Certificate header." @@ -20,7 +20,7 @@ base64 = "0.13" clap = "3.0.0-beta.2" chrono = "0.4.19" hex = "0.4.2" -ic-agent = { path = "../ic-agent", version = "0.7" } +ic-agent = { path = "../ic-agent", version = "0.8" } leb128 = "0.2.4" reqwest = { version = "0.11",features = [ "blocking", "rustls-tls" ] } sha2 = "0.9.1" diff --git a/icx-proxy/Cargo.toml b/icx-proxy/Cargo.toml index 210079b2..7793188d 100644 --- a/icx-proxy/Cargo.toml +++ b/icx-proxy/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "icx-proxy" -version = "0.5.0" +version = "0.6.0" authors = ["DFINITY Stiftung "] edition = "2018" description = "CLI tool to create an HTTP proxy to the Internet Computer." @@ -23,8 +23,8 @@ garcon = { version = "0.2.3", features = ["async"] } hex = "0.4.3" hyper = { version = "0.14.11", features = ["full"] } hyper-tls = "0.5.0" -ic-agent = { path = "../ic-agent", version = "0.7" } -ic-utils = { path = "../ic-utils", version = "0.5" } +ic-agent = { path = "../ic-agent", version = "0.8" } +ic-utils = { path = "../ic-utils", version = "0.6" } tokio = { version = "1.8.1", features = ["full"] } serde = "1.0.115" serde_json = "1.0.57" diff --git a/icx/Cargo.toml b/icx/Cargo.toml index 52ac62e5..355fac6d 100644 --- a/icx/Cargo.toml +++ b/icx/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "icx" -version = "0.4.0" +version = "0.5.0" authors = ["DFINITY Stiftung "] edition = "2018" description = "CLI tool to call canisters on the Internet Computer." @@ -23,8 +23,8 @@ clap = "3.0.0-beta.1" garcon = { version = "0.2.3", features = ["async"] } hex = "0.4.2" humantime = "2.0.1" -ic-agent = { path = "../ic-agent", version = "0.7" } -ic-utils = { path = "../ic-utils", version = "0.5" } +ic-agent = { path = "../ic-agent", version = "0.8" } +ic-utils = { path = "../ic-utils", version = "0.6" } pem = "0.8.1" ring = "0.16.11" serde = "1.0.115"