Skip to content

Commit

Permalink
Update dependencies (non-major)
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Feb 19, 2024
1 parent 90413d7 commit e619bc4
Show file tree
Hide file tree
Showing 7 changed files with 881 additions and 555 deletions.
10 changes: 5 additions & 5 deletions src/canisters/monitor/Cargo.toml
Expand Up @@ -7,15 +7,15 @@ edition = "2021"
crate-type = ["cdylib"]

[dependencies]
ic-cdk = "0.5.5"
ic-cdk-macros = "0.5.5"
candid = "0.7.15"
serde = "1.0.140"
ic-cdk = "0.12.1"
ic-cdk-macros = "0.8.4"
candid = "0.10.3"
serde = "1.0.196"
serde_bytes = "0.11"
log = "0.4"
common = { path = "../../common/common" }
thiserror = "1.0"
anyhow = "1.0.58"
anyhow = "1.0.80"

[dev-dependencies]
test_common = { path = "../../common/test_common" }
Expand Down
2 changes: 1 addition & 1 deletion src/common/build_common/Cargo.toml
Expand Up @@ -8,6 +8,6 @@ edition = "2021"
[dependencies]
env-file-reader = "0.3.0"
vergen = { version = "7", default-features = false, features = ["build", "git"] }
anyhow = "1.0.58"
anyhow = "1.0.80"
hex = "0.4.3"
flate2 = "1.0"
22 changes: 11 additions & 11 deletions src/common/common/Cargo.toml
Expand Up @@ -6,24 +6,24 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
ic-cdk = "0.5.5"
ic-cdk-macros = "0.5.5"
candid = "0.7.15"
serde = "1.0.140"
ic-cdk = "0.12.1"
ic-cdk-macros = "0.8.4"
candid = "0.10.3"
serde = "1.0.196"
serde_bytes = "0.11"
anyhow = "1.0.58"
anyhow = "1.0.80"
thiserror = "1.0"
log = "0.4"
async-trait = "0.1.56"
url = "2.2.2"
num-bigint = "0.4.3"
async-trait = "0.1.77"
url = "2.5.0"
num-bigint = "0.4.4"
yansi = "0.5.1"
once_cell = "1.13"
once_cell = "1.19"
flate2 = "1.0"
const_env = "0.1.2"
sha2 = "0.10.2"
sha2 = "0.10.8"
hex = "0.4.3"
crc32fast = "1.3.2"
crc32fast = "1.4.0"

[dev-dependencies]
env_logger = "0.9.0"
Expand Down
12 changes: 6 additions & 6 deletions src/common/common_actor/Cargo.toml
Expand Up @@ -9,15 +9,15 @@ edition = "2021"
crate-type = ["cdylib"]

[dependencies]
ic-cdk = "0.5.5"
ic-cdk-macros = "0.5.5"
candid = "0.7.15"
serde = "1.0.140"
ic-cdk = "0.12.1"
ic-cdk-macros = "0.8.4"
candid = "0.10.3"
serde = "1.0.196"
serde_bytes = "0.11"
async-trait = "0.1.56"
async-trait = "0.1.77"
common = { path = "../common"}
log = "0.4"
once_cell = "1.13"
once_cell = "1.19"

[build-dependencies]
vergen = { version = "7", default-features = false, features = ["build", "git"] }
Expand Down
18 changes: 9 additions & 9 deletions src/common/test_common/Cargo.toml
Expand Up @@ -6,16 +6,16 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
ic-cdk = "0.5.5"
ic-cdk-macros = "0.5.5"
candid = "0.7.15"
serde = "1.0.140"
ic-cdk = "0.12.1"
ic-cdk-macros = "0.8.4"
candid = "0.10.3"
serde = "1.0.196"
serde_bytes = "0.11"
common = { path = "../common" }
log = "0.4"
env_logger = "0.9.0"
mockall = "0.11.2"
async-trait = "0.1.56"
rstest = "0.15.0"
env_logger = "0.11.2"
mockall = "0.12.1"
async-trait = "0.1.77"
rstest = "0.18.2"
hex = "0.4.3"
crc32fast = "1.3.2"
crc32fast = "1.4.0"

0 comments on commit e619bc4

Please sign in to comment.