Skip to content

Commit 8f9f33a

Browse files
authored
fix(general): Bumping pallas crate to 0.33.0, introducing cardano network PROTOCOL_V14 (#435)
* use upstream pallas version * fix for the rbac-registration and cardano-chain-follower crates * bump crate versions * fix
1 parent 11c6aff commit 8f9f33a

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

rust/cardano-blockchain-types/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "cardano-blockchain-types"
33
description = "Common Cardano Blockchain data types for use in both applications and crates"
44
keywords = ["cardano", "catalyst", ]
5-
version = "0.0.3"
5+
version = "0.0.4"
66
authors = [
77
"Steven Johnson <[email protected]>"
88
]
@@ -18,8 +18,8 @@ crate-type = ["cdylib", "rlib"]
1818
workspace = true
1919

2020
[dependencies]
21-
pallas = { version = "0.30.1", git = "https://github.com/input-output-hk/catalyst-pallas.git", rev = "9b5183c8b90b90fe2cc319d986e933e9518957b3" }
22-
# pallas-hardano = { version = "0.30.1", git = "https://github.com/input-output-hk/catalyst-pallas.git", rev = "9b5183c8b90b90fe2cc319d986e933e9518957b3" }
21+
pallas = { version = "0.33.0" }
22+
# pallas-hardano = { version = "0.33.0" }
2323
cbork-utils = { version = "0.0.1", path = "../cbork-utils" }
2424
catalyst-types = { version = "0.0.3", path = "../catalyst-types" }
2525

rust/cardano-blockchain-types/src/stake_address.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ impl StakeAddress {
5151
#[must_use]
5252
pub fn from_stake_cred(network: Network, cred: &conway::StakeCredential) -> Self {
5353
match cred {
54-
conway::StakeCredential::Scripthash(h) => Self::new(network, true, (*h).into()),
54+
conway::StakeCredential::ScriptHash(h) => Self::new(network, true, (*h).into()),
5555
conway::StakeCredential::AddrKeyhash(h) => Self::new(network, false, (*h).into()),
5656
}
5757
}

rust/cardano-chain-follower/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cardano-chain-follower"
3-
version = "0.0.8"
3+
version = "0.0.9"
44
edition.workspace = true
55
authors.workspace = true
66
homepage.workspace = true
@@ -11,15 +11,15 @@ license.workspace = true
1111
workspace = true
1212

1313
[dependencies]
14-
pallas = { version = "0.30.1", git = "https://github.com/input-output-hk/catalyst-pallas.git", rev = "9b5183c8b90b90fe2cc319d986e933e9518957b3" }
15-
pallas-hardano = { version = "0.30.1", git = "https://github.com/input-output-hk/catalyst-pallas.git", rev = "9b5183c8b90b90fe2cc319d986e933e9518957b3" }
16-
pallas-crypto = { version = "0.30.1", git = "https://github.com/input-output-hk/catalyst-pallas.git", rev = "9b5183c8b90b90fe2cc319d986e933e9518957b3" }
14+
pallas = { version = "0.33.0" }
15+
pallas-hardano = { version = "0.33.0" }
16+
pallas-crypto = { version = "0.33.0" }
1717

1818
mithril-client = { version = "0.12.2", default-features = false, features = [
1919
"full",
2020
"num-integer-backend",
2121
] }
22-
cardano-blockchain-types = { version = "0.0.3", path = "../cardano-blockchain-types" }
22+
cardano-blockchain-types = { version = "0.0.4", path = "../cardano-blockchain-types" }
2323
catalyst-types = { version = "0.0.3", path = "../catalyst-types" }
2424

2525

@@ -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.4", path = "../rbac-registration" }
67+
rbac-registration = { version = "0.0.5", path = "../rbac-registration" }
6868

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

rust/catalyst-types/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ hex = "0.4.3"
2424
minicbor = { version = "0.25.1", features = ["std"] }
2525
num-traits = "0.2.19"
2626
orx-concurrent-vec = { version = "3.6.0", features = ["serde"] }
27-
pallas-crypto = { version = "0.30.1", git = "https://github.com/input-output-hk/catalyst-pallas.git", rev = "9b5183c8b90b90fe2cc319d986e933e9518957b3" }
27+
pallas-crypto = { version = "0.33.0" }
2828
serde = { version = "1.0.217", features = ["derive", "rc"] }
2929
thiserror = "2.0.11"
3030
base64-url = "3.0.0"

rust/rbac-registration/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "rbac-registration"
33
description = "Role Based Access Control Registration"
44
keywords = ["cardano", "catalyst", "rbac registration"]
5-
version = "0.0.4"
5+
version = "0.0.5"
66
authors = [
77
"Arissara Chotivichit <[email protected]>"
88
]
@@ -33,7 +33,7 @@ oid-registry = "0.7.1"
3333
thiserror = "2.0.11"
3434

3535
c509-certificate = { version = "0.0.3", path = "../c509-certificate" }
36-
pallas = { version = "0.30.1", git = "https://github.com/input-output-hk/catalyst-pallas.git", rev = "9b5183c8b90b90fe2cc319d986e933e9518957b3" }
36+
pallas = { version = "0.33.0" }
3737
cbork-utils = { version = "0.0.1", path = "../cbork-utils" }
38-
cardano-blockchain-types = { version = "0.0.3", path = "../cardano-blockchain-types" }
38+
cardano-blockchain-types = { version = "0.0.4", path = "../cardano-blockchain-types" }
3939
catalyst-types = { version = "0.0.3", path = "../catalyst-types" }

0 commit comments

Comments
 (0)