Release 0.32.1

pallas@0.32.1
pallas-addresses@0.32.1
pallas-applying@0.32.1
pallas-codec@0.32.1
pallas-configs@0.32.1
pallas-crypto@0.32.1
pallas-hardano@0.32.1
pallas-math@0.32.1
pallas-network@0.32.1
pallas-primitives@0.32.1
pallas-traverse@0.32.1
pallas-txbuilder@0.32.1
pallas-utxorpc@0.32.1
pallas-wallet@0.32.1

Generated by cargo-workspaces
This commit is contained in:
Santiago Carmuega 2025-06-25 10:28:02 -03:00
parent d09677bdd4
commit af0463f5b6
No known key found for this signature in database
14 changed files with 60 additions and 60 deletions

View file

@ -1,7 +1,7 @@
[package] [package]
name = "pallas-addresses" name = "pallas-addresses"
description = "Ergonomic library to work with different Cardano addresses" description = "Ergonomic library to work with different Cardano addresses"
version = "0.32.0" version = "0.32.1"
edition = "2021" edition = "2021"
repository = "https://github.com/txpipe/pallas" repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas" homepage = "https://github.com/txpipe/pallas"
@ -12,8 +12,8 @@ authors = ["Santiago Carmuega <santiago@carmuega.me>"]
[dependencies] [dependencies]
hex = "0.4.3" hex = "0.4.3"
pallas-crypto = { version = "=0.32.0", path = "../pallas-crypto" } pallas-crypto = { version = "=0.32.1", path = "../pallas-crypto" }
pallas-codec = { version = "=0.32.0", path = "../pallas-codec" } pallas-codec = { version = "=0.32.1", path = "../pallas-codec" }
base58 = "0.2.0" base58 = "0.2.0"
bech32 = "0.9.1" bech32 = "0.9.1"
thiserror = "1.0" thiserror = "1.0"

View file

@ -1,7 +1,7 @@
[package] [package]
name = "pallas-applying" name = "pallas-applying"
description = "Logic for validating and applying new blocks and txs to the chain state" description = "Logic for validating and applying new blocks and txs to the chain state"
version = "0.32.0" version = "0.32.1"
edition = "2021" edition = "2021"
repository = "https://github.com/MaicoLeberle/pallas" repository = "https://github.com/MaicoLeberle/pallas"
homepage = "https://github.com/MaicoLeberle/pallas" homepage = "https://github.com/MaicoLeberle/pallas"
@ -13,11 +13,11 @@ authors = ["Maico Leberle <maico.leberle@gmail.com>"]
doctest = false doctest = false
[dependencies] [dependencies]
pallas-addresses = { version = "=0.32.0", path = "../pallas-addresses" } pallas-addresses = { version = "=0.32.1", path = "../pallas-addresses" }
pallas-codec = { version = "=0.32.0", path = "../pallas-codec" } pallas-codec = { version = "=0.32.1", path = "../pallas-codec" }
pallas-crypto = { version = "=0.32.0", path = "../pallas-crypto" } pallas-crypto = { version = "=0.32.1", path = "../pallas-crypto" }
pallas-primitives = { version = "=0.32.0", path = "../pallas-primitives" } pallas-primitives = { version = "=0.32.1", path = "../pallas-primitives" }
pallas-traverse = { version = "=0.32.0", path = "../pallas-traverse" } pallas-traverse = { version = "=0.32.1", path = "../pallas-traverse" }
rand = "0.8" rand = "0.8"
hex = "0.4" hex = "0.4"
chrono = "0.4.39" chrono = "0.4.39"

View file

@ -1,7 +1,7 @@
[package] [package]
name = "pallas-codec" name = "pallas-codec"
description = "Pallas common CBOR encoding interface and utilities" description = "Pallas common CBOR encoding interface and utilities"
version = "0.32.0" version = "0.32.1"
edition = "2021" edition = "2021"
repository = "https://github.com/txpipe/pallas" repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas" homepage = "https://github.com/txpipe/pallas"

View file

@ -1,7 +1,7 @@
[package] [package]
name = "pallas-configs" name = "pallas-configs"
description = "Config structs and utilities matching the Haskell implementation" description = "Config structs and utilities matching the Haskell implementation"
version = "0.32.0" version = "0.32.1"
edition = "2021" edition = "2021"
repository = "https://github.com/txpipe/pallas" repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas" homepage = "https://github.com/txpipe/pallas"
@ -12,10 +12,10 @@ authors = ["Santiago Carmuega <santiago@carmuega.me>"]
[dependencies] [dependencies]
hex = "0.4.3" hex = "0.4.3"
pallas-addresses = { version = "=0.32.0", path = "../pallas-addresses" } pallas-addresses = { version = "=0.32.1", path = "../pallas-addresses" }
pallas-crypto = { version = "=0.32.0", path = "../pallas-crypto" } pallas-crypto = { version = "=0.32.1", path = "../pallas-crypto" }
pallas-codec = { version = "=0.32.0", path = "../pallas-codec" } pallas-codec = { version = "=0.32.1", path = "../pallas-codec" }
pallas-primitives = { version = "=0.32.0", path = "../pallas-primitives" } pallas-primitives = { version = "=0.32.1", path = "../pallas-primitives" }
serde = { version = "1.0.136", optional = true, features = ["derive"] } serde = { version = "1.0.136", optional = true, features = ["derive"] }
serde_json = { version = "1.0.79", optional = true } serde_json = { version = "1.0.79", optional = true }
base64 = "0.22.0" base64 = "0.22.0"

View file

@ -1,7 +1,7 @@
[package] [package]
name = "pallas-crypto" name = "pallas-crypto"
description = "Cryptographic primitives for Cardano" description = "Cryptographic primitives for Cardano"
version = "0.32.0" version = "0.32.1"
edition = "2021" edition = "2021"
repository = "https://github.com/txpipe/pallas" repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas" homepage = "https://github.com/txpipe/pallas"
@ -15,7 +15,7 @@ hex = "0.4"
cryptoxide = { version = "0.4.4" } cryptoxide = { version = "0.4.4" }
thiserror = "1.0" thiserror = "1.0"
rand_core = "0.6" rand_core = "0.6"
pallas-codec = { version = "=0.32.0", path = "../pallas-codec" } pallas-codec = { version = "=0.32.1", path = "../pallas-codec" }
serde = "1.0.143" serde = "1.0.143"
zeroize = "1.8.1" zeroize = "1.8.1"

View file

@ -1,7 +1,7 @@
[package] [package]
name = "pallas-hardano" name = "pallas-hardano"
description = "Pallas interoperability with the Haskel Cardano node implementation" description = "Pallas interoperability with the Haskel Cardano node implementation"
version = "0.32.0" version = "0.32.1"
edition = "2021" edition = "2021"
repository = "https://github.com/txpipe/pallas" repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas" homepage = "https://github.com/txpipe/pallas"
@ -15,8 +15,8 @@ thiserror = "1.0.49"
binary-layout = "3.2.0" binary-layout = "3.2.0"
tap = "1.0.1" tap = "1.0.1"
tracing = "0.1.40" tracing = "0.1.40"
pallas-traverse = { version = "=0.32.0", path = "../pallas-traverse" } pallas-traverse = { version = "=0.32.1", path = "../pallas-traverse" }
pallas-network = { version = "=0.32.0", path = "../pallas-network" } pallas-network = { version = "=0.32.1", path = "../pallas-network" }
[dev-dependencies] [dev-dependencies]
tracing-subscriber = "0.3.17" tracing-subscriber = "0.3.17"

View file

@ -1,7 +1,7 @@
[package] [package]
name = "pallas-math" name = "pallas-math"
description = "Mathematics functions for Cardano" description = "Mathematics functions for Cardano"
version = "0.32.0" version = "0.32.1"
edition = "2021" edition = "2021"
repository = "https://github.com/txpipe/pallas" repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas" homepage = "https://github.com/txpipe/pallas"

View file

@ -1,7 +1,7 @@
[package] [package]
name = "pallas-network" name = "pallas-network"
description = "Ouroboros networking stack using async IO" description = "Ouroboros networking stack using async IO"
version = "0.32.0" version = "0.32.1"
edition = "2021" edition = "2021"
repository = "https://github.com/txpipe/pallas" repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas" homepage = "https://github.com/txpipe/pallas"
@ -14,8 +14,8 @@ authors = ["Santiago Carmuega <santiago@carmuega.me>", "Pi Lanningham <pi.lannin
byteorder = "1.4.3" byteorder = "1.4.3"
hex = "0.4.3" hex = "0.4.3"
itertools = "0.13.0" itertools = "0.13.0"
pallas-codec = { version = "=0.32.0", path = "../pallas-codec" } pallas-codec = { version = "=0.32.1", path = "../pallas-codec" }
pallas-crypto = { version = "=0.32.0", path = "../pallas-crypto" } pallas-crypto = { version = "=0.32.1", path = "../pallas-crypto" }
rand = "0.8.5" rand = "0.8.5"
socket2 = "0.5.5" socket2 = "0.5.5"
thiserror = "1.0.31" thiserror = "1.0.31"

View file

@ -1,7 +1,7 @@
[package] [package]
name = "pallas-primitives" name = "pallas-primitives"
description = "Ledger primitives and cbor codec for the different Cardano eras" description = "Ledger primitives and cbor codec for the different Cardano eras"
version = "0.32.0" version = "0.32.1"
edition = "2021" edition = "2021"
repository = "https://github.com/txpipe/pallas" repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas" homepage = "https://github.com/txpipe/pallas"
@ -16,8 +16,8 @@ authors = [
[dependencies] [dependencies]
hex = "0.4.3" hex = "0.4.3"
log = "0.4.14" log = "0.4.14"
pallas-crypto = { version = "=0.32.0", path = "../pallas-crypto" } pallas-crypto = { version = "=0.32.1", path = "../pallas-crypto" }
pallas-codec = { version = "=0.32.0", path = "../pallas-codec" } pallas-codec = { version = "=0.32.1", path = "../pallas-codec" }
base58 = "0.2.0" base58 = "0.2.0"
bech32 = "0.9.0" bech32 = "0.9.0"
serde = { version = "1.0.136", optional = true, features = ["derive"] } serde = { version = "1.0.136", optional = true, features = ["derive"] }

View file

@ -1,7 +1,7 @@
[package] [package]
name = "pallas-traverse" name = "pallas-traverse"
description = "Utilities to traverse over multi-era block data" description = "Utilities to traverse over multi-era block data"
version = "0.32.0" version = "0.32.1"
edition = "2021" edition = "2021"
repository = "https://github.com/txpipe/pallas" repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas" homepage = "https://github.com/txpipe/pallas"
@ -11,10 +11,10 @@ readme = "README.md"
authors = ["Santiago Carmuega <santiago@carmuega.me>"] authors = ["Santiago Carmuega <santiago@carmuega.me>"]
[dependencies] [dependencies]
pallas-primitives = { version = "=0.32.0", path = "../pallas-primitives" } pallas-primitives = { version = "=0.32.1", path = "../pallas-primitives" }
pallas-addresses = { version = "=0.32.0", path = "../pallas-addresses" } pallas-addresses = { version = "=0.32.1", path = "../pallas-addresses" }
pallas-crypto = { version = "=0.32.0", path = "../pallas-crypto" } pallas-crypto = { version = "=0.32.1", path = "../pallas-crypto" }
pallas-codec = { version = "=0.32.0", path = "../pallas-codec" } pallas-codec = { version = "=0.32.1", path = "../pallas-codec" }
hex = "0.4.3" hex = "0.4.3"
thiserror = "1.0.31" thiserror = "1.0.31"
paste = "1.0.14" paste = "1.0.14"

View file

@ -1,7 +1,7 @@
[package] [package]
name = "pallas-txbuilder" name = "pallas-txbuilder"
description = "An ergonomic Cardano transaction builder" description = "An ergonomic Cardano transaction builder"
version = "0.32.0" version = "0.32.1"
edition = "2021" edition = "2021"
repository = "https://github.com/txpipe/pallas" repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas" homepage = "https://github.com/txpipe/pallas"
@ -11,12 +11,12 @@ readme = "README.md"
authors = ["Santiago Carmuega <santiago@carmuega.me>", "Cainã Costa <me@cfcosta.com>"] authors = ["Santiago Carmuega <santiago@carmuega.me>", "Cainã Costa <me@cfcosta.com>"]
[dependencies] [dependencies]
pallas-codec = { path = "../pallas-codec", version = "=0.32.0" } pallas-codec = { path = "../pallas-codec", version = "=0.32.1" }
pallas-crypto = { path = "../pallas-crypto", version = "=0.32.0" } pallas-crypto = { path = "../pallas-crypto", version = "=0.32.1" }
pallas-primitives = { path = "../pallas-primitives", version = "=0.32.0" } pallas-primitives = { path = "../pallas-primitives", version = "=0.32.1" }
pallas-traverse = { path = "../pallas-traverse", version = "=0.32.0" } pallas-traverse = { path = "../pallas-traverse", version = "=0.32.1" }
pallas-addresses = { path = "../pallas-addresses", version = "=0.32.0" } pallas-addresses = { path = "../pallas-addresses", version = "=0.32.1" }
pallas-wallet = { path = "../pallas-wallet", version = "=0.32.0" } pallas-wallet = { path = "../pallas-wallet", version = "=0.32.1" }
serde = { version = "1.0.188", features = ["derive"] } serde = { version = "1.0.188", features = ["derive"] }
serde_json = "1.0.107" serde_json = "1.0.107"
thiserror = "1.0.44" thiserror = "1.0.44"

View file

@ -1,7 +1,7 @@
[package] [package]
name = "pallas-utxorpc" name = "pallas-utxorpc"
description = "Pallas interoperability with the UTxORPC spec" description = "Pallas interoperability with the UTxORPC spec"
version = "0.32.0" version = "0.32.1"
edition = "2021" edition = "2021"
repository = "https://github.com/txpipe/pallas" repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas" homepage = "https://github.com/txpipe/pallas"
@ -14,14 +14,14 @@ authors = ["Santiago Carmuega <santiago@carmuega.me>"]
# utxorpc-spec = { path = "../../../utxorpc/spec/gen/rust" } # utxorpc-spec = { path = "../../../utxorpc/spec/gen/rust" }
utxorpc-spec = { version = "0.15.0" } utxorpc-spec = { version = "0.15.0" }
pallas-traverse = { version = "=0.32.0", path = "../pallas-traverse" } pallas-traverse = { version = "=0.32.1", path = "../pallas-traverse" }
pallas-primitives = { version = "=0.32.0", path = "../pallas-primitives" } pallas-primitives = { version = "=0.32.1", path = "../pallas-primitives" }
pallas-codec = { version = "=0.32.0", path = "../pallas-codec" } pallas-codec = { version = "=0.32.1", path = "../pallas-codec" }
pallas-crypto = { version = "=0.32.0", path = "../pallas-crypto" } pallas-crypto = { version = "=0.32.1", path = "../pallas-crypto" }
prost-types = "0.13.1" prost-types = "0.13.1"
# TODO: remove this dep once we have multiera params in traverse # TODO: remove this dep once we have multiera params in traverse
pallas-applying = { version = "=0.32.0", path = "../pallas-applying" } pallas-applying = { version = "=0.32.1", path = "../pallas-applying" }
[dev-dependencies] [dev-dependencies]
hex = "0.4.3" hex = "0.4.3"

View file

@ -1,7 +1,7 @@
[package] [package]
name = "pallas-wallet" name = "pallas-wallet"
description = "Cardano wallet utilities such as key generation" description = "Cardano wallet utilities such as key generation"
version = "0.32.0" version = "0.32.1"
edition = "2021" edition = "2021"
repository = "https://github.com/txpipe/pallas" repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas" homepage = "https://github.com/txpipe/pallas"
@ -12,7 +12,7 @@ authors = ["Santiago Carmuega <santiago@carmuega.me>"]
[dependencies] [dependencies]
thiserror = "1.0.49" thiserror = "1.0.49"
pallas-crypto = { version = "=0.32.0", path = "../pallas-crypto" } pallas-crypto = { version = "=0.32.1", path = "../pallas-crypto" }
ed25519-bip32 = "0.4.1" ed25519-bip32 = "0.4.1"
bip39 = { version = "2.0.0", features = ["rand_core"] } bip39 = { version = "2.0.0", features = ["rand_core"] }
cryptoxide = "0.4.4" cryptoxide = "0.4.4"

View file

@ -1,7 +1,7 @@
[package] [package]
name = "pallas" name = "pallas"
description = "Rust-native building blocks for the Cardano blockchain ecosystem." description = "Rust-native building blocks for the Cardano blockchain ecosystem."
version = "0.32.0" version = "0.32.1"
edition = "2021" edition = "2021"
repository = "https://github.com/txpipe/pallas" repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas" homepage = "https://github.com/txpipe/pallas"
@ -11,18 +11,18 @@ readme = "../README.md"
authors = ["Santiago Carmuega <santiago@carmuega.me>"] authors = ["Santiago Carmuega <santiago@carmuega.me>"]
[dependencies] [dependencies]
pallas-network = { version = "=0.32.0", path = "../pallas-network/" } pallas-network = { version = "=0.32.1", path = "../pallas-network/" }
pallas-primitives = { version = "=0.32.0", path = "../pallas-primitives/" } pallas-primitives = { version = "=0.32.1", path = "../pallas-primitives/" }
pallas-traverse = { version = "=0.32.0", path = "../pallas-traverse/" } pallas-traverse = { version = "=0.32.1", path = "../pallas-traverse/" }
pallas-addresses = { version = "=0.32.0", path = "../pallas-addresses/" } pallas-addresses = { version = "=0.32.1", path = "../pallas-addresses/" }
pallas-crypto = { version = "=0.32.0", path = "../pallas-crypto/" } pallas-crypto = { version = "=0.32.1", path = "../pallas-crypto/" }
pallas-codec = { version = "=0.32.0", path = "../pallas-codec/" } pallas-codec = { version = "=0.32.1", path = "../pallas-codec/" }
pallas-utxorpc = { version = "=0.32.0", path = "../pallas-utxorpc/" } pallas-utxorpc = { version = "=0.32.1", path = "../pallas-utxorpc/" }
pallas-configs = { version = "=0.32.0", path = "../pallas-configs/" } pallas-configs = { version = "=0.32.1", path = "../pallas-configs/" }
pallas-txbuilder = { version = "=0.32.0", path = "../pallas-txbuilder/" } pallas-txbuilder = { version = "=0.32.1", path = "../pallas-txbuilder/" }
pallas-applying = { version = "=0.32.0", path = "../pallas-applying/", optional = true } pallas-applying = { version = "=0.32.1", path = "../pallas-applying/", optional = true }
pallas-wallet = { version = "=0.32.0", path = "../pallas-wallet/", optional = true } pallas-wallet = { version = "=0.32.1", path = "../pallas-wallet/", optional = true }
pallas-hardano = { version = "=0.32.0", path = "../pallas-hardano/", optional = true } pallas-hardano = { version = "=0.32.1", path = "../pallas-hardano/", optional = true }
[features] [features]
hardano = ["pallas-hardano"] hardano = ["pallas-hardano"]