Skip to content

Commit 3145acc

Browse files
committed
use latest upstream pallas version
1 parent 9d22cc1 commit 3145acc

File tree

6 files changed

+17
-17
lines changed

6 files changed

+17
-17
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,10 +18,10 @@ 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" }
21+
pallas = { version = "0.33.0" }
2222
# pallas-hardano = { version = "0.30.1", git = "https://github.com/input-output-hk/catalyst-pallas.git", rev = "9b5183c8b90b90fe2cc319d986e933e9518957b3" }
2323
cbork-utils = { version = "0.0.1", path = "../cbork-utils" }
24-
catalyst-types = { version = "0.0.3", path = "../catalyst-types" }
24+
catalyst-types = { version = "0.0.4", path = "../catalyst-types" }
2525

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

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,16 +11,16 @@ 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" }
23-
catalyst-types = { version = "0.0.3", path = "../catalyst-types" }
22+
cardano-blockchain-types = { version = "0.0.4", path = "../cardano-blockchain-types" }
23+
catalyst-types = { version = "0.0.4", path = "../catalyst-types" }
2424

2525

2626
thiserror = "1.0.69"

rust/catalyst-types/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "catalyst-types"
3-
version = "0.0.3"
3+
version = "0.0.4"
44
edition.workspace = true
55
license.workspace = true
66
authors.workspace = true
@@ -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: 4 additions & 4 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" }
39-
catalyst-types = { version = "0.0.3", path = "../catalyst-types" }
38+
cardano-blockchain-types = { version = "0.0.4", path = "../cardano-blockchain-types" }
39+
catalyst-types = { version = "0.0.4", path = "../catalyst-types" }

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", path = "../catalyst-types" }
1515

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

0 commit comments

Comments
 (0)