Skip to content

Commit e8fbf84

Browse files
authored
feat(general): Get rid from the path dependencies (#436)
* wip * wip * wip * wip
1 parent 8f9f33a commit e8fbf84

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

rust/cardano-blockchain-types/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ workspace = true
2020
[dependencies]
2121
pallas = { version = "0.33.0" }
2222
# pallas-hardano = { version = "0.33.0" }
23-
cbork-utils = { version = "0.0.1", path = "../cbork-utils" }
24-
catalyst-types = { version = "0.0.3", path = "../catalyst-types" }
23+
cbork-utils = { version = "0.0.1", git = "https://github.com/input-output-hk/catalyst-libs.git", tag = "r20250724-01" }
24+
catalyst-types = { version = "0.0.4", git = "https://github.com/input-output-hk/catalyst-libs.git", tag = "r20250724-01" }
2525

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

rust/cardano-chain-follower/Cargo.toml

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

2525

2626
thiserror = "1.0.69"
@@ -64,7 +64,7 @@ test-log = { version = "0.2.16", default-features = false, features = [
6464
"trace",
6565
] }
6666
clap = "4.5.23"
67-
rbac-registration = { version = "0.0.5", path = "../rbac-registration" }
67+
rbac-registration = { version = "0.0.5", git = "https://github.com/input-output-hk/catalyst-libs.git", tag = "r20250724-01" }
6868

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

rust/rbac-registration/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ uuid = "1.11.0"
3232
oid-registry = "0.7.1"
3333
thiserror = "2.0.11"
3434

35-
c509-certificate = { version = "0.0.3", path = "../c509-certificate" }
35+
c509-certificate = { version = "0.0.3", git = "https://github.com/input-output-hk/catalyst-libs.git", tag = "r20250724-01" }
3636
pallas = { version = "0.33.0" }
37-
cbork-utils = { version = "0.0.1", path = "../cbork-utils" }
38-
cardano-blockchain-types = { version = "0.0.4", path = "../cardano-blockchain-types" }
39-
catalyst-types = { version = "0.0.3", path = "../catalyst-types" }
37+
cbork-utils = { version = "0.0.1", git = "https://github.com/input-output-hk/catalyst-libs.git", tag = "r20250724-01" }
38+
cardano-blockchain-types = { version = "0.0.4", git = "https://github.com/input-output-hk/catalyst-libs.git", tag = "r20250724-01" }
39+
catalyst-types = { version = "0.0.4", git = "https://github.com/input-output-hk/catalyst-libs.git", tag = "r20250724-01" }

rust/signed_doc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ license.workspace = true
1111
workspace = true
1212

1313
[dependencies]
14-
catalyst-types = { version = "0.0.3", path = "../catalyst-types" }
14+
catalyst-types = { version = "0.0.4", git = "https://github.com/input-output-hk/catalyst-libs.git", tag = "r20250724-01" }
1515

1616
anyhow = "1.0.95"
1717
serde = { version = "1.0.217", features = ["derive"] }

rust/vote-tx-v1/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ license.workspace = true
1111
workspace = true
1212

1313
[dependencies]
14-
catalyst-voting = { version = "0.0.1", path = "../catalyst-voting" }
14+
catalyst-voting = { version = "0.0.1", git = "https://github.com/input-output-hk/catalyst-libs.git", tag = "r20250724-01" }
1515
anyhow = "1.0.89"
1616

1717
[dev-dependencies]

0 commit comments

Comments
 (0)