Skip to content

Commit 9d9fd30

Browse files
chore: release agent-rs 0.8.0 and friends (#259)
icx-cert: 0.3.0 => 0.4.0 ic-asset: 0.2.0 => 0.3.0 icx-proxy: 0.5.0 => 0.6.0 ic-identity-hsm: 0.3.4 => 0.3.5 icx: 0.4.0 => 0.5.0 ic-agent: 0.7.0 => 0.8.0 ic-utils: 0.5.0 => 0.6.0 icx-asset: 0.2.0 => 0.3.0 * also: update to ic-types 0.2.2
1 parent 260594f commit 9d9fd30

File tree

9 files changed

+33
-33
lines changed

9 files changed

+33
-33
lines changed

Cargo.lock

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ic-agent/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ic-agent"
3-
version = "0.7.0"
3+
version = "0.8.0"
44
authors = ["DFINITY Stiftung <[email protected]>"]
55
edition = "2018"
66
description = "Agent library to communicate with the Internet Computer, following the Public Specification."
@@ -20,7 +20,7 @@ byteorder = "1.3.2"
2020
garcon = { version = "0.2", features = ["async"] }
2121
hex = "0.4.0"
2222
http = "0.2.3"
23-
ic-types = "0.2.1"
23+
ic-types = "0.2.2"
2424
leb128 = "0.2.4"
2525
mime = "0.3.16"
2626
openssl = "0.10.36"

ic-asset/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ic-asset"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
authors = ["DFINITY Stiftung <[email protected]>"]
55
edition = "2018"
66
description = "Library for storing files in an asset canister."
@@ -20,9 +20,9 @@ futures = "0.3.16"
2020
futures-intrusive = "0.4.0"
2121
garcon = { version = "0.2", features = ["async"] }
2222
hex = {version = "0.4.2", features = ["serde"] }
23-
ic-agent = { path = "../ic-agent", version = "0.7", features = [ "pem" ] }
24-
ic-types = { version = "0.2.1", features = [ "serde" ] }
25-
ic-utils = { path = "../ic-utils", version = "0.5" }
23+
ic-agent = { path = "../ic-agent", version = "0.8", features = [ "pem" ] }
24+
ic-types = { version = "0.2.2", features = [ "serde" ] }
25+
ic-utils = { path = "../ic-utils", version = "0.6" }
2626
mime = "0.3.16"
2727
mime_guess = "2.0.3"
2828
openssl = "0.10.32"

ic-identity-hsm/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ic-identity-hsm"
3-
version = "0.3.4"
3+
version = "0.3.5"
44
authors = ["DFINITY Stiftung <[email protected]>"]
55
description = "Identity implementation for HSM for the ic-agent package."
66
homepage = "https://docs.rs/ic-identity-hsm"
@@ -14,7 +14,7 @@ include = ["src", "Cargo.toml", "../LICENSE", "README.md"]
1414

1515
[dependencies]
1616
hex = "0.4.2"
17-
ic-agent = { path = "../ic-agent", version = "0.7", features = [ "pem" ] }
17+
ic-agent = { path = "../ic-agent", version = "0.8", features = [ "pem" ] }
1818
num-bigint = "0.4.0"
1919
openssl = "0.10.30"
2020
pkcs11 = "0.5.0"

ic-utils/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ic-utils"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
authors = ["DFINITY Stiftung <[email protected]>"]
55
edition = "2018"
66
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"]
1818
async-trait = "0.1.40"
1919
candid = "0.7.4"
2020
garcon = { version = "0.2", features = ["async"] }
21-
ic-agent = { path = "../ic-agent", version = "0.7" }
21+
ic-agent = { path = "../ic-agent", version = "0.8" }
2222
serde = "1.0.115"
2323
serde_bytes = "0.11"
2424
strum = "0.21"

icx-asset/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "icx-asset"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
authors = ["DFINITY Stiftung <[email protected]>"]
55
edition = "2018"
66
description = "CLI tool to manage assets on an asset canister on the Internet Computer."
@@ -22,10 +22,10 @@ clap = "3.0.0-beta.2"
2222
delay = "0.3.1"
2323
garcon = "0.2.2"
2424
humantime = "2.0.1"
25-
ic-agent = { path = "../ic-agent", version = "0.7" }
26-
ic-asset = { path = "../ic-asset", version = "0.2" }
27-
ic-types = "0.2.1"
28-
ic-utils = { path = "../ic-utils", version = "0.5" }
25+
ic-agent = { path = "../ic-agent", version = "0.8" }
26+
ic-asset = { path = "../ic-asset", version = "0.3" }
27+
ic-types = "0.2.2"
28+
ic-utils = { path = "../ic-utils", version = "0.6" }
2929
libflate = "1.1.0"
3030
num-traits = "0.2"
3131
pem = "0.8.1"

icx-cert/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "icx-cert"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
authors = ["DFINITY Stiftung <[email protected]>"]
55
edition = "2018"
66
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"
2020
clap = "3.0.0-beta.2"
2121
chrono = "0.4.19"
2222
hex = "0.4.2"
23-
ic-agent = { path = "../ic-agent", version = "0.7" }
23+
ic-agent = { path = "../ic-agent", version = "0.8" }
2424
leb128 = "0.2.4"
2525
reqwest = { version = "0.11",features = [ "blocking", "rustls-tls" ] }
2626
sha2 = "0.9.1"

icx-proxy/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "icx-proxy"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
authors = ["DFINITY Stiftung <[email protected]>"]
55
edition = "2018"
66
description = "CLI tool to create an HTTP proxy to the Internet Computer."
@@ -23,8 +23,8 @@ garcon = { version = "0.2.3", features = ["async"] }
2323
hex = "0.4.3"
2424
hyper = { version = "0.14.11", features = ["full"] }
2525
hyper-tls = "0.5.0"
26-
ic-agent = { path = "../ic-agent", version = "0.7" }
27-
ic-utils = { path = "../ic-utils", version = "0.5" }
26+
ic-agent = { path = "../ic-agent", version = "0.8" }
27+
ic-utils = { path = "../ic-utils", version = "0.6" }
2828
tokio = { version = "1.8.1", features = ["full"] }
2929
serde = "1.0.115"
3030
serde_json = "1.0.57"

icx/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "icx"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
authors = ["DFINITY Stiftung <[email protected]>"]
55
edition = "2018"
66
description = "CLI tool to call canisters on the Internet Computer."
@@ -23,8 +23,8 @@ clap = "3.0.0-beta.1"
2323
garcon = { version = "0.2.3", features = ["async"] }
2424
hex = "0.4.2"
2525
humantime = "2.0.1"
26-
ic-agent = { path = "../ic-agent", version = "0.7" }
27-
ic-utils = { path = "../ic-utils", version = "0.5" }
26+
ic-agent = { path = "../ic-agent", version = "0.8" }
27+
ic-utils = { path = "../ic-utils", version = "0.6" }
2828
pem = "0.8.1"
2929
ring = "0.16.11"
3030
serde = "1.0.115"

0 commit comments

Comments
 (0)