From ad87925e8f7f544a54f1501e4031f5762c6d9af8 Mon Sep 17 00:00:00 2001 From: Steven Johnson Date: Sun, 6 Oct 2024 08:35:01 +0700 Subject: [PATCH] fix(general): Bump Versions --- Earthfile | 4 +-- docs/Earthfile | 2 +- .../rust/overhead_benchmark/Cargo.toml | 12 ++++---- rust/Earthfile | 2 +- rust/c509-certificate/Cargo.toml | 22 +++++++------- rust/c509-certificate/Earthfile | 2 +- rust/cardano-chain-follower/Cargo.toml | 29 ++++++++++--------- rust/catalyst-voting/Cargo.toml | 6 ++-- rust/cbork-abnf-parser/Cargo.toml | 8 ++--- rust/cbork-cddl-parser/Cargo.toml | 6 ++-- rust/cbork/Cargo.toml | 6 ++-- rust/cbork/Earthfile | 2 +- rust/hermes-ipfs/Cargo.toml | 12 ++++---- rust/hermes-ipfs/src/lib.rs | 6 ++-- 14 files changed, 60 insertions(+), 59 deletions(-) diff --git a/Earthfile b/Earthfile index 30f00065c..a224708f3 100644 --- a/Earthfile +++ b/Earthfile @@ -1,7 +1,7 @@ VERSION 0.8 -IMPORT github.com/input-output-hk/catalyst-ci/earthly/mdlint:v3.2.13 AS mdlint-ci -IMPORT github.com/input-output-hk/catalyst-ci/earthly/cspell:v3.2.13 AS cspell-ci +IMPORT github.com/input-output-hk/catalyst-ci/earthly/mdlint:v3.2.15 AS mdlint-ci +IMPORT github.com/input-output-hk/catalyst-ci/earthly/cspell:v3.2.15 AS cspell-ci FROM debian:stable-slim diff --git a/docs/Earthfile b/docs/Earthfile index 09766872c..b20624efb 100644 --- a/docs/Earthfile +++ b/docs/Earthfile @@ -1,6 +1,6 @@ VERSION 0.8 -IMPORT github.com/input-output-hk/catalyst-ci/earthly/docs:v3.2.13 AS docs-ci +IMPORT github.com/input-output-hk/catalyst-ci/earthly/docs:v3.2.15 AS docs-ci IMPORT .. AS repo diff --git a/integration_tests/rust/overhead_benchmark/Cargo.toml b/integration_tests/rust/overhead_benchmark/Cargo.toml index fbdb4d2b4..8d40e4766 100644 --- a/integration_tests/rust/overhead_benchmark/Cargo.toml +++ b/integration_tests/rust/overhead_benchmark/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "overhead_benchmark" -version = "0.1.0" +version = "0.1.1" edition.workspace = true [lints] @@ -9,8 +9,8 @@ workspace = true [dependencies] cardano-chain-follower = { path = "../.." } -anyhow = "1.0.82" -clap = { version = "4.5.4", features = ["derive", "help", "usage", "std"], default-features = false } -pallas-traverse = "0.30.1" -pallas-hardano = "0.30.1" -tokio = { version = "1.37.0", features = ["macros", "sync", "rt-multi-thread", "rt", "net"] } +anyhow = "1.0.89" +clap = { version = "4.5.19", features = ["derive", "help", "usage", "std"], default-features = false } +pallas-traverse = "0.30.2" +pallas-hardano = "0.30.2" +tokio = { version = "1.40.0", features = ["macros", "sync", "rt-multi-thread", "rt", "net"] } diff --git a/rust/Earthfile b/rust/Earthfile index a76ec1ff2..ca6ed4f50 100644 --- a/rust/Earthfile +++ b/rust/Earthfile @@ -1,6 +1,6 @@ VERSION 0.8 -IMPORT github.com/input-output-hk/catalyst-ci/earthly/rust:v3.2.13 AS rust-ci +IMPORT github.com/input-output-hk/catalyst-ci/earthly/rust:v3.2.15 AS rust-ci COPY_SRC: FUNCTION diff --git a/rust/c509-certificate/Cargo.toml b/rust/c509-certificate/Cargo.toml index 38dbba9e4..ba001324f 100644 --- a/rust/c509-certificate/Cargo.toml +++ b/rust/c509-certificate/Cargo.toml @@ -2,7 +2,7 @@ name = "c509-certificate" description = "C509 certificate implementation" keywords = ["cardano", "catalyst", "c509 certificate", "certificate", "x509"] -version = "0.0.2" +version = "0.0.3" authors = [ "Arissara Chotivichit " ] @@ -21,26 +21,26 @@ workspace = true minicbor = { version = "0.25.1", features = ["std"] } hex = "0.4.3" oid = "0.2.1" -oid-registry = "0.7.0" -asn1-rs = "0.6.0" -anyhow = "1.0.86" +oid-registry = "0.7.1" +asn1-rs = "0.6.2" +anyhow = "1.0.89" bimap = "0.6.3" -once_cell = "1.19.0" +once_cell = "1.20.2" strum = "0.26.3" -strum_macros = "0.26.3" -regex = "1.10.5" +strum_macros = "0.26.4" +regex = "1.11.0" ed25519-dalek = { version = "2.1.1", features = ["pem"] } -thiserror = "1.0.56" +thiserror = "1.0.64" serde = { version = "1.0.204", features = ["derive"] } -wasm-bindgen = "0.2.92" +wasm-bindgen = "0.2.93" serde-wasm-bindgen = "0.6.5" [package.metadata.cargo-machete] ignored = ["strum"] [dev-dependencies] -clap = { version = "4.5.9", features = ["derive"] } -serde_json = "1.0.120" +clap = { version = "4.5.19", features = ["derive"] } +serde_json = "1.0.128" rand = "0.8.5" chrono = "0.4.38" diff --git a/rust/c509-certificate/Earthfile b/rust/c509-certificate/Earthfile index 80af451c1..198a93795 100644 --- a/rust/c509-certificate/Earthfile +++ b/rust/c509-certificate/Earthfile @@ -1,6 +1,6 @@ VERSION 0.8 -IMPORT github.com/input-output-hk/catalyst-ci/earthly/rust::v3.2.13 AS rust-ci +IMPORT github.com/input-output-hk/catalyst-ci/earthly/rust::v3.2.15 AS rust-ci IMPORT .. AS rust-local IMPORT ../.. AS repo diff --git a/rust/cardano-chain-follower/Cargo.toml b/rust/cardano-chain-follower/Cargo.toml index 508524fd4..e63542ad5 100644 --- a/rust/cardano-chain-follower/Cargo.toml +++ b/rust/cardano-chain-follower/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cardano-chain-follower" -version = "0.0.2" +version = "0.0.3" edition.workspace = true authors.workspace = true homepage.workspace = true @@ -16,14 +16,15 @@ pallas-hardano = { version = "0.30.1", git = "https://github.com/input-output-hk pallas-crypto = { version = "0.30.1", git = "https://github.com/input-output-hk/catalyst-pallas.git", rev = "9b5183c8b90b90fe2cc319d986e933e9518957b3" } # cspell: words licence -mithril-client = { version = "0.8.16", git = "https://github.com/input-output-hk/catalyst-mithril.git", branch = "fix/lgpl-licence", default-features = false, features = [ +#mithril-client = { version = "0.8.16", git = "https://github.com/input-output-hk/catalyst-mithril.git", branch = "fix/lgpl-licence", default-features = false, features = [ +mithril-client = { version = "0.8.18", default-features = false, features = [ "full", "num-integer-backend", ] } c509-certificate = { version = "0.0.1", git = "https://github.com/input-output-hk/catalyst-libs.git", tag = "v0.0.1" } -thiserror = "1.0.56" +thiserror = "1.0.64" tokio = { version = "1.40.0", features = [ "macros", "rt", @@ -32,13 +33,13 @@ tokio = { version = "1.40.0", features = [ ] } tracing = "0.1.40" tracing-log = "0.2.0" -dashmap = "6.0.1" -url = "2.5.0" -anyhow = "1.0.86" +dashmap = "6.1.0" +url = "2.5.2" +anyhow = "1.0.89" chrono = "0.4.38" -async-trait = "0.1.82" +async-trait = "0.1.83" dirs = "5.0.1" -futures = "0.3.30" +futures = "0.3.31" humantime = "2.1.0" crossbeam-skiplist = "0.1.3" crossbeam-channel = "0.5.13" @@ -47,26 +48,26 @@ strum = "0.26.3" ouroboros = "0.18.4" hex = "0.4.3" rayon = "1.10.0" -serde = "1.0.209" +serde = "1.0.210" serde_json = "1.0.128" mimalloc = { version = "0.1.43", optional = true } memx = "0.1.32" fmmap = { version = "0.3.3", features = ["sync", "tokio-async"] } -minicbor = { version = "0.24.4", features = ["alloc", "derive", "half"] } -brotli = "6.0.0" +minicbor = { version = "0.25.1", features = ["alloc", "derive", "half"] } +brotli = "7.0.0" zstd = "0.13.2" x509-cert = "0.2.5" ed25519-dalek = "2.1.1" blake2b_simd = "1.0.2" num-traits = "0.2.19" logcall = "0.1.9" -tar = "0.4.41" +tar = "0.4.42" ureq = { version = "2.10.1", features = ["native-certs"] } http = "1.1.0" hickory-resolver = { version = "0.24.1", features = ["dns-over-rustls"] } moka = { version = "0.12.8", features = ["sync"] } der-parser = "9.0.0" -regex = "1.10.6" +regex = "1.11.0" bech32 = "0.11.0" [dev-dependencies] @@ -75,7 +76,7 @@ tracing-subscriber = { version = "0.3.18", features = ["env-filter"] } test-log = { version = "0.2.16", default-features = false, features = [ "trace", ] } -clap = "4.5.17" +clap = "4.5.19" # Note, these features are for support of features exposed by dependencies. [features] diff --git a/rust/catalyst-voting/Cargo.toml b/rust/catalyst-voting/Cargo.toml index e26728cea..866437d4e 100644 --- a/rust/catalyst-voting/Cargo.toml +++ b/rust/catalyst-voting/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "catalyst-voting" -version = "0.1.0" +version = "0.0.1" edition.workspace = true authors.workspace = true homepage.workspace = true @@ -11,9 +11,9 @@ license.workspace = true workspace = true [dependencies] -thiserror = "1.0.56" +thiserror = "1.0.64" rand_core = "0.6.4" -curve25519-dalek = { version = "4.0", features = ["digest"] } +curve25519-dalek = { version = "4.1.3", features = ["digest"] } blake2b_simd = "1.0.2" [dev-dependencies] diff --git a/rust/cbork-abnf-parser/Cargo.toml b/rust/cbork-abnf-parser/Cargo.toml index 6d438b813..9b28425d6 100644 --- a/rust/cbork-abnf-parser/Cargo.toml +++ b/rust/cbork-abnf-parser/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "cbork-abnf-parser" -version = "0.0.1" +version = "0.0.2" edition.workspace = true license.workspace = true authors.workspace = true @@ -16,6 +16,6 @@ workspace = true [dependencies] derive_more = {version = "1.0.0", features = ["from"] } -pest = { version = "2.7.2", features = ["std", "pretty-print", "memchr", "const_prec_climber"] } -pest_derive = { version = "2.7.2", features = ["grammar-extras"] } -thiserror = "1.0.56" +pest = { version = "2.7.13", features = ["std", "pretty-print", "memchr", "const_prec_climber"] } +pest_derive = { version = "2.7.13", features = ["grammar-extras"] } +thiserror = "1.0.64" diff --git a/rust/cbork-cddl-parser/Cargo.toml b/rust/cbork-cddl-parser/Cargo.toml index fad6435f3..bd55ec14e 100644 --- a/rust/cbork-cddl-parser/Cargo.toml +++ b/rust/cbork-cddl-parser/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "cbork-cddl-parser" -version = "0.0.1" +version = "0.0.2" edition.workspace = true license.workspace = true authors.workspace = true @@ -17,5 +17,5 @@ workspace = true [dependencies] derive_more = {version = "1.0.0", features = ["from","display"] } pest = { version = "2.7.2", features = ["std", "pretty-print", "memchr", "const_prec_climber"] } -pest_derive = { version = "2.7.2", features = ["grammar-extras"] } -thiserror = "1.0.56" +pest_derive = { version = "2.7.13", features = ["grammar-extras"] } +thiserror = "1.0.64" diff --git a/rust/cbork/Cargo.toml b/rust/cbork/Cargo.toml index 9827d5a6c..e1ffe51d3 100644 --- a/rust/cbork/Cargo.toml +++ b/rust/cbork/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cbork" -version = "0.0.1" +version = "0.0.2" edition.workspace = true license.workspace = true authors.workspace = true @@ -18,7 +18,7 @@ workspace = true cbork-cddl-parser = {version = "0.0.1", git = "https://github.com/input-output-hk/catalyst-libs.git", tag = "v0.0.1" } # Only use this for testing - do not change dependency to this in checked in code. #cbork-cddl-parser = { path = "../cbork-cddl-parser", version = "0.1.0" } -clap = { version = "4.5.3", features = ["derive", "env"] } -anyhow = "1.0.71" +clap = { version = "4.5.19", features = ["derive", "env"] } +anyhow = "1.0.89" console = "0.15.8" diff --git a/rust/cbork/Earthfile b/rust/cbork/Earthfile index bc0dd2c19..ed2e6473f 100644 --- a/rust/cbork/Earthfile +++ b/rust/cbork/Earthfile @@ -1,6 +1,6 @@ VERSION 0.8 -IMPORT github.com/input-output-hk/catalyst-ci/earthly/rust::v3.2.13 AS rust-ci +IMPORT github.com/input-output-hk/catalyst-ci/earthly/rust::v3.2.15 AS rust-ci IMPORT .. AS rust-local diff --git a/rust/hermes-ipfs/Cargo.toml b/rust/hermes-ipfs/Cargo.toml index 141da4adb..9ca3935d6 100644 --- a/rust/hermes-ipfs/Cargo.toml +++ b/rust/hermes-ipfs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hermes-ipfs" -version = "0.0.1" +version = "0.0.2" edition.workspace = true license.workspace = true authors.workspace = true @@ -11,17 +11,17 @@ repository.workspace = true workspace = true [dependencies] -anyhow = "1.0.71" +anyhow = "1.0.89" derive_more = {version = "1.0.0", features = ["from","into","display"] } libipld = "0.16.0" -rust-ipfs = "0.11.21" -tokio = "1.36.0" +rust-ipfs = "0.12.1" +tokio = "1.40.0" [dev-dependencies] # Dependencies used by examples -clap = { version = "4.5.3", features = ["derive"] } +clap = { version = "4.5.19", features = ["derive"] } dirs = "5.0.1" lipsum = "0.9.1" rand = "0.8.5" -rustyline-async = "0.4.2" +rustyline-async = "0.4.3" tracing-subscriber = { version = "0.3.18", features = ["env-filter"] } diff --git a/rust/hermes-ipfs/src/lib.rs b/rust/hermes-ipfs/src/lib.rs index 6b2b41e78..9915a3f44 100644 --- a/rust/hermes-ipfs/src/lib.rs +++ b/rust/hermes-ipfs/src/lib.rs @@ -30,7 +30,7 @@ pub use rust_ipfs::StorageType; /// Stream for `PubSub` Topic Subscriptions. pub use rust_ipfs::SubscriptionStream; /// Builder type for IPFS Node configuration. -use rust_ipfs::UninitializedIpfsNoop; +use rust_ipfs::UninitializedIpfsDefault as UninitializedIpfs; use rust_ipfs::{ dag::ResolveError, libp2p::gossipsub::{Message as PubsubMessage, MessageId as PubsubMessageId}, @@ -43,13 +43,13 @@ use rust_ipfs::{ pub struct MessageId(pub PubsubMessageId); /// Builder type for IPFS Node configuration. -pub struct IpfsBuilder(UninitializedIpfsNoop); +pub struct IpfsBuilder(UninitializedIpfs); impl IpfsBuilder { #[must_use] /// Create a new` IpfsBuilder`. pub fn new() -> Self { - Self(UninitializedIpfsNoop::new()) + Self(UninitializedIpfs::new()) } #[must_use]