-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update ic-types and dependencies (#198)
ic-types to 0.1.3 but this is actually a breaking change. It would be 0.2.0 but there is a circular dependency with candid -> ic-types 0.1.2 and cannot be built.
- Loading branch information
1 parent
439713b
commit 01aa26c
Showing
7 changed files
with
18 additions
and
18 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "ic-agent" | ||
version = "0.4.1" | ||
version = "0.5.0" | ||
authors = ["DFINITY Stiftung <[email protected]>"] | ||
edition = "2018" | ||
description = "Agent library to communicate with the Internet Computer, following the Public Specification." | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "ic-identity-hsm" | ||
version = "0.3.0" | ||
version = "0.3.1" | ||
authors = ["DFINITY Stiftung <[email protected]>"] | ||
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.4", features = [ "pem" ] } | ||
ic-agent = { path = "../ic-agent", version = "0.5", features = [ "pem" ] } | ||
ic-types = { path = "../ic-types", version = "0.1", features = [ "serde" ] } | ||
num-bigint = "0.3.1" | ||
openssl = "0.10.30" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "ic-types" | ||
version = "0.1.2" | ||
version = "0.1.3" | ||
authors = ["DFINITY Stiftung <[email protected]>"] | ||
edition = "2018" | ||
description = "Types related to the Internet Computer Public Specification." | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "ic-utils" | ||
version = "0.3.0" | ||
version = "0.3.1" | ||
authors = ["DFINITY Stiftung <[email protected]>"] | ||
edition = "2018" | ||
description = "Collection of utilities for Rust, on top of ic-agent, to communicate with the Internet Computer, following the Public Specification." | ||
|
@@ -18,8 +18,8 @@ include = ["src", "Cargo.toml", "../LICENSE", "README.md"] | |
async-trait = "0.1.40" | ||
candid = "0.6.17" | ||
garcon = { version = "0.2", features = ["async"] } | ||
ic-agent = { path = "../ic-agent", version = "0.4" } | ||
ic-types = { path = "../ic-types", version = "0.1.2" } | ||
ic-agent = { path = "../ic-agent", version = "0.5" } | ||
ic-types = { path = "../ic-types", version = "0.1" } | ||
serde = "1.0.115" | ||
serde_bytes = "0.11" | ||
strum = "0.20" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "icx-proxy" | ||
version = "0.2.1" | ||
version = "0.3.0" | ||
authors = ["DFINITY Stiftung <[email protected]>"] | ||
edition = "2018" | ||
description = "CLI tool to create an HTTP proxy to the Internet Computer." | ||
|
@@ -24,8 +24,8 @@ garcon = { version = "0.2.3", features = ["async"] } | |
hex = "0.4.3" | ||
hyper = { version = "0.14.4", features = ["full"] } | ||
hyper-tls = "0.5.0" | ||
ic-agent = { path = "../ic-agent", version = "0.4" } | ||
ic-types = { path = "../ic-types", version = "0.1.2" } | ||
ic-agent = { path = "../ic-agent", version = "0.5" } | ||
ic-types = { path = "../ic-types", version = "0.1" } | ||
ic-utils = { path = "../ic-utils", version = "0.3" } | ||
tokio = { version = "1.2.0", features = ["full"] } | ||
serde = "1.0.115" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "icx" | ||
version = "0.2.0" | ||
version = "0.2.1" | ||
authors = ["DFINITY Stiftung <[email protected]>"] | ||
edition = "2018" | ||
description = "CLI tool to call canisters on the Internet Computer." | ||
|
@@ -22,7 +22,7 @@ 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.4" } | ||
ic-agent = { path = "../ic-agent", version = "0.5" } | ||
ic-types = { path = "../ic-types", version = "0.1" } | ||
ic-utils = { path = "../ic-utils", version = "0.3" } | ||
pem = "0.8.1" | ||
|
This comment was marked as spam.
Sorry, something went wrong.
01aa26c
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
https:/www.facebook.com/sila.guapa.1
01aa26c
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
package]
name = "ic-utils"
version = "0.3.0"
version = "0.3.1"
authors = ["DFINITY Stiftung [email protected]"]
edition = "2018"
description = "Collection of utilities for Rust, on top of ic-agent, to communicate with the Internet Computer, following the Public Specification."
@@ -18,8 +18,8 @@ include = ["src", "Cargo.toml", "../LICENSE", "README.md"]
async-trait = "0.1.40"
candid = "0.6.17"
garcon = { version = "0.2", features = ["async"] }
ic-agent = { path = "../ic-agent", version = "0.4" }
ic-types = { path = "../ic-types", version = "0.1.2" }
ic-agent = { path = "../ic-agent", version = "0.5" }
ic-types = { path = "../ic-types", version = "0.1" }
serde = "1.0.115"
serde_bytes = "0.11"
strum = "0.20"