Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.11.0] - 2022-01-07

### Breaking change: Updated to ic-types 0.3.0

The `lookup_path` method now takes an `Iterator<Label>` rather than an `AsRef<[Label]>`

## [0.10.2] - 2021-12-22

### ic-agent
Expand Down
56 changes: 27 additions & 29 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions ic-agent/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ic-agent"
version = "0.10.2"
version = "0.11.0"
authors = ["DFINITY Stiftung <sdk@dfinity.org>"]
edition = "2018"
description = "Agent library to communicate with the Internet Computer, following the Public Specification."
Expand All @@ -19,16 +19,16 @@ base64 = "0.13.0"
byteorder = "1.3.2"
garcon = { version = "0.2", features = ["async"] }
hex = "0.4.0"
http = "0.2.5"
http = "0.2.6"
hyper-rustls = { version = "0.23.0", features = [ "webpki-roots" ] }
ic-types = "0.2.2"
ic-types = "0.3.0"
leb128 = "0.2.5"
mime = "0.3.16"
openssl = "0.10.38"
rand = "0.8.4"
rustls = "0.20.2"
ring = { version = "0.16.11", features = ["std"] }
serde = { version = "1.0.132", features = ["derive"] }
serde = { version = "1.0.133", features = ["derive"] }
serde_bytes = "0.11.2"
serde_cbor = "0.11.2"
simple_asn1 = "0.6.1"
Expand All @@ -45,10 +45,10 @@ version = "1.0"
optional = true

[dev-dependencies]
candid = "0.7.9"
candid = "0.7.10"
mockito = "0.30.0"
proptest = "1.0.0"
serde_json = "1.0.72"
serde_json = "1.0.74"
tokio = { version = "1.15.0", features = ["full"] }

[features]
Expand Down
12 changes: 6 additions & 6 deletions ic-asset/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ic-asset"
version = "0.10.2"
version = "0.11.0"
authors = ["DFINITY Stiftung <sdk@dfinity.org>"]
edition = "2018"
description = "Library for storing files in an asset canister."
Expand All @@ -14,18 +14,18 @@ include = ["src", "Cargo.toml", "../LICENSE", "README.md"]

[dependencies]
anyhow = "1.0"
candid = "0.7.7"
candid = "0.7.10"
flate2 = "1.0.22"
futures = "0.3.19"
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.10", features = [ "pem" ] }
ic-types = { version = "0.2.2", features = [ "serde" ] }
ic-utils = { path = "../ic-utils", version = "0.10" }
ic-agent = { path = "../ic-agent", version = "0.11", features = [ "pem" ] }
ic-types = { version = "0.3.0", features = [ "serde" ] }
ic-utils = { path = "../ic-utils", version = "0.11" }
mime = "0.3.16"
mime_guess = "2.0.3"
openssl = "0.10.32"
openssl = "0.10.38"
serde = "1.0"
serde_bytes = "0.11.2"
walkdir = "2.2.9"
Expand Down
6 changes: 3 additions & 3 deletions ic-identity-hsm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ic-identity-hsm"
version = "0.10.2"
version = "0.11.0"
authors = ["DFINITY Stiftung <sdk@dfinity.org>"]
description = "Identity implementation for HSM for the ic-agent package."
homepage = "https://docs.rs/ic-identity-hsm"
Expand All @@ -14,9 +14,9 @@ include = ["src", "Cargo.toml", "../LICENSE", "README.md"]

[dependencies]
hex = "0.4.2"
ic-agent = { path = "../ic-agent", version = "0.10", features = [ "pem" ] }
ic-agent = { path = "../ic-agent", version = "0.11", features = [ "pem" ] }
num-bigint = "0.4.3"
openssl = "0.10.30"
openssl = "0.10.38"
pkcs11 = "0.5.0"
simple_asn1 = "0.6.0"
thiserror = "1.0.20"
6 changes: 3 additions & 3 deletions ic-utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ic-utils"
version = "0.10.2"
version = "0.11.0"
authors = ["DFINITY Stiftung <sdk@dfinity.org>"]
edition = "2018"
description = "Collection of utilities for Rust, on top of ic-agent, to communicate with the Internet Computer, following the Public Specification."
Expand All @@ -16,9 +16,9 @@ include = ["src", "Cargo.toml", "../LICENSE", "README.md"]

[dependencies]
async-trait = "0.1.40"
candid = "0.7.7"
candid = "0.7.10"
garcon = { version = "0.2", features = ["async"] }
ic-agent = { path = "../ic-agent", version = "0.10" }
ic-agent = { path = "../ic-agent", version = "0.11" }
serde = "1.0.115"
serde_bytes = "0.11"
strum = "0.23"
Expand Down
12 changes: 6 additions & 6 deletions icx-asset/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "icx-asset"
version = "0.10.2"
version = "0.11.0"
authors = ["DFINITY Stiftung <sdk@dfinity.org>"]
edition = "2018"
description = "CLI tool to manage assets on an asset canister on the Internet Computer."
Expand All @@ -16,17 +16,17 @@ include = ["src", "Cargo.toml", "../LICENSE", "README.md"]

[dependencies]
anyhow = "1.0.34"
candid = "0.7.4"
candid = "0.7.10"
chrono = "0.4.19"
clap = "=3.0.0-beta.5"
clap_derive = "=3.0.0-beta.5"
delay = "0.3.1"
garcon = "0.2.2"
humantime = "2.0.1"
ic-agent = { path = "../ic-agent", version = "0.10" }
ic-asset = { path = "../ic-asset", version = "0.10" }
ic-types = "0.2.2"
ic-utils = { path = "../ic-utils", version = "0.10" }
ic-agent = { path = "../ic-agent", version = "0.11" }
ic-asset = { path = "../ic-asset", version = "0.11" }
ic-types = "0.3.0"
ic-utils = { path = "../ic-utils", version = "0.11" }
libflate = "1.1.1"
num-traits = "0.2"
pem = "1.0.1"
Expand Down
8 changes: 4 additions & 4 deletions icx-cert/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "icx-cert"
version = "0.10.2"
version = "0.11.0"
authors = ["DFINITY Stiftung <sdk@dfinity.org>"]
edition = "2018"
description = "CLI tool to download a document from the Internet Computer and pretty-print the contents of its IC-Certificate header."
Expand All @@ -21,10 +21,10 @@ clap = "=3.0.0-beta.5"
clap_derive = "=3.0.0-beta.5"
chrono = "0.4.19"
hex = "0.4.2"
ic-agent = { path = "../ic-agent", version = "0.10" }
ic-agent = { path = "../ic-agent", version = "0.11" }
leb128 = "0.2.4"
reqwest = { version = "0.11",features = [ "blocking", "rustls-tls" ] }
sha2 = "0.10.0"
reqwest = { version = "0.11", features = [ "blocking", "rustls-tls" ] }
sha2 = "0.10.1"
serde = { version = "1.0.115", features = ["derive"] }
serde_bytes = "0.11"
serde_cbor = "0.11"
8 changes: 4 additions & 4 deletions icx/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "icx"
version = "0.10.2"
version = "0.11.0"
authors = ["DFINITY Stiftung <sdk@dfinity.org>"]
edition = "2018"
description = "CLI tool to call canisters on the Internet Computer."
Expand All @@ -18,14 +18,14 @@ path = "src/main.rs"

[dependencies]
anyhow = { version = "1.0", features = ["backtrace"] }
candid = "0.7.4"
candid = "0.7.10"
clap = "=3.0.0-beta.5"
clap_derive = "=3.0.0-beta.5"
garcon = { version = "0.2.3", features = ["async"] }
hex = "0.4.2"
humantime = "2.0.1"
ic-agent = { path = "../ic-agent", version = "0.10" }
ic-utils = { path = "../ic-utils", version = "0.10" }
ic-agent = { path = "../ic-agent", version = "0.11" }
ic-utils = { path = "../ic-utils", version = "0.11" }
pem = "1.0"
ring = "0.16.11"
serde = "1.0.115"
Expand Down
Loading