Skip to content

Commit 898659f

Browse files
authored
feat(rust): Bump crates, get rid of the fmmap 0.3.3 version (#224)
* bump cat-libs crate versions * update dependencies, get rid of the fmmap 0.3.3 version * cleanup
1 parent 4eb8340 commit 898659f

File tree

4 files changed

+11
-10
lines changed

4 files changed

+11
-10
lines changed

rust/cardano-blockchain-types/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ workspace = true
2020
[dependencies]
2121
pallas = { version = "0.30.1", git = "https://github.com/input-output-hk/catalyst-pallas.git", rev = "9b5183c8b90b90fe2cc319d986e933e9518957b3" }
2222
# pallas-hardano = { version = "0.30.1", git = "https://github.com/input-output-hk/catalyst-pallas.git", rev = "9b5183c8b90b90fe2cc319d986e933e9518957b3" }
23-
cbork-utils = { version = "0.0.1", git = "https://github.com/input-output-hk/catalyst-libs.git", tag = "r20250220-00" }
24-
catalyst-types = { version = "0.0.3", git = "https://github.com/input-output-hk/catalyst-libs.git", tag = "r20250220-00" }
23+
cbork-utils = { version = "0.0.1", path = "../cbork-utils" }
24+
catalyst-types = { version = "0.0.3", path = "../catalyst-types" }
2525

2626
ouroboros = "0.18.4"
2727
tracing = "0.1.41"

rust/cardano-chain-follower/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ mithril-client = { version = "0.10.4", default-features = false, features = [
1919
"full",
2020
"num-integer-backend",
2121
] }
22-
cardano-blockchain-types = { version = "0.0.3", git = "https://github.com/input-output-hk/catalyst-libs.git", tag = "r20250220-00" }
23-
catalyst-types = { version = "0.0.3", git = "https://github.com/input-output-hk/catalyst-libs.git", tag = "r20250220-00" }
22+
cardano-blockchain-types = { version = "0.0.3", path = "../cardano-blockchain-types" }
23+
catalyst-types = { version = "0.0.3", path = "../catalyst-types" }
2424

2525
thiserror = "1.0.69"
2626
tokio = { version = "1.42.0", features = [
@@ -63,7 +63,7 @@ test-log = { version = "0.2.16", default-features = false, features = [
6363
"trace",
6464
] }
6565
clap = "4.5.23"
66-
rbac-registration = { version = "0.0.4", git = "https://github.com/input-output-hk/catalyst-libs.git", tag = "r20250220-00" }
66+
rbac-registration = { version = "0.0.4", path = "../rbac-registration" }
6767

6868
# Note, these features are for support of features exposed by dependencies.
6969
[features]

rust/rbac-registration/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ tracing = "0.1.40"
3030
ed25519-dalek = "2.1.1"
3131
uuid = "1.11.0"
3232

33-
c509-certificate = { version = "0.0.3", git = "https://github.com/input-output-hk/catalyst-libs.git", tag = "r20250220-00" }
33+
c509-certificate = { version = "0.0.3", path = "../c509-certificate" }
3434
pallas = { version = "0.30.1", git = "https://github.com/input-output-hk/catalyst-pallas.git", rev = "9b5183c8b90b90fe2cc319d986e933e9518957b3" }
35-
cbork-utils = { version = "0.0.1", git = "https://github.com/input-output-hk/catalyst-libs.git", tag = "r20250220-00" }
36-
cardano-blockchain-types = { version = "0.0.3", git = "https://github.com/input-output-hk/catalyst-libs.git", tag = "r20250220-00" }
37-
catalyst-types = { version = "0.0.3", git = "https://github.com/input-output-hk/catalyst-libs.git", tag = "r20250220-00" }
35+
cbork-utils = { version = "0.0.1", path = "../cbork-utils" }
36+
cardano-blockchain-types = { version = "0.0.3", path = "../cardano-blockchain-types" }
37+
catalyst-types = { version = "0.0.3", path = "../catalyst-types" }

rust/signed_doc/Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ license.workspace = true
1111
workspace = true
1212

1313
[dependencies]
14-
catalyst-types = { version = "0.0.3", git = "https://github.com/input-output-hk/catalyst-libs.git", tag = "r20250220-00" }
14+
catalyst-types = { version = "0.0.3", path = "../catalyst-types" }
15+
1516
anyhow = "1.0.95"
1617
serde = { version = "1.0.217", features = ["derive"] }
1718
serde_json = "1.0.134"

0 commit comments

Comments
 (0)