-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] Generated by cargo-workspaces
- Loading branch information
Showing
14 changed files
with
62 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "pallas-addresses" | ||
description = "Ergonomic library to work with different Cardano addresses" | ||
version = "0.30.2" | ||
version = "0.31.0" | ||
edition = "2021" | ||
repository = "https://github.com/txpipe/pallas" | ||
homepage = "https://github.com/txpipe/pallas" | ||
|
@@ -12,8 +12,8 @@ authors = ["Santiago Carmuega <[email protected]>"] | |
|
||
[dependencies] | ||
hex = "0.4.3" | ||
pallas-crypto = { version = "=0.30.2", path = "../pallas-crypto" } | ||
pallas-codec = { version = "=0.30.2", path = "../pallas-codec" } | ||
pallas-crypto = { version = "=0.31.0", path = "../pallas-crypto" } | ||
pallas-codec = { version = "=0.31.0", path = "../pallas-codec" } | ||
base58 = "0.2.0" | ||
bech32 = "0.9.1" | ||
thiserror = "1.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "pallas-applying" | ||
description = "Logic for validating and applying new blocks and txs to the chain state" | ||
version = "0.30.2" | ||
version = "0.31.0" | ||
edition = "2021" | ||
repository = "https://github.com/MaicoLeberle/pallas" | ||
homepage = "https://github.com/MaicoLeberle/pallas" | ||
|
@@ -13,11 +13,11 @@ authors = ["Maico Leberle <[email protected]>"] | |
doctest = false | ||
|
||
[dependencies] | ||
pallas-addresses = { version = "=0.30.2", path = "../pallas-addresses" } | ||
pallas-codec = { version = "=0.30.2", path = "../pallas-codec" } | ||
pallas-crypto = { version = "=0.30.2", path = "../pallas-crypto" } | ||
pallas-primitives = { version = "=0.30.2", path = "../pallas-primitives" } | ||
pallas-traverse = { version = "=0.30.2", path = "../pallas-traverse" } | ||
pallas-addresses = { version = "=0.31.0", path = "../pallas-addresses" } | ||
pallas-codec = { version = "=0.31.0", path = "../pallas-codec" } | ||
pallas-crypto = { version = "=0.31.0", path = "../pallas-crypto" } | ||
pallas-primitives = { version = "=0.31.0", path = "../pallas-primitives" } | ||
pallas-traverse = { version = "=0.31.0", path = "../pallas-traverse" } | ||
rand = "0.8" | ||
hex = "0.4" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "pallas-configs" | ||
description = "Config structs and utilities matching the Haskell implementation" | ||
version = "0.30.2" | ||
version = "0.31.0" | ||
edition = "2021" | ||
repository = "https://github.com/txpipe/pallas" | ||
homepage = "https://github.com/txpipe/pallas" | ||
|
@@ -12,10 +12,10 @@ authors = ["Santiago Carmuega <[email protected]>"] | |
|
||
[dependencies] | ||
hex = "0.4.3" | ||
pallas-addresses = { version = "=0.30.2", path = "../pallas-addresses" } | ||
pallas-crypto = { version = "=0.30.2", path = "../pallas-crypto" } | ||
pallas-codec = { version = "=0.30.2", path = "../pallas-codec" } | ||
pallas-primitives = { version = "=0.30.2", path = "../pallas-primitives" } | ||
pallas-addresses = { version = "=0.31.0", path = "../pallas-addresses" } | ||
pallas-crypto = { version = "=0.31.0", path = "../pallas-crypto" } | ||
pallas-codec = { version = "=0.31.0", path = "../pallas-codec" } | ||
pallas-primitives = { version = "=0.31.0", path = "../pallas-primitives" } | ||
serde = { version = "1.0.136", optional = true, features = ["derive"] } | ||
serde_json = { version = "1.0.79", optional = true } | ||
base64 = "0.22.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "pallas-network" | ||
description = "Ouroboros networking stack using async IO" | ||
version = "0.30.2" | ||
version = "0.31.0" | ||
edition = "2021" | ||
repository = "https://github.com/txpipe/pallas" | ||
homepage = "https://github.com/txpipe/pallas" | ||
|
@@ -14,8 +14,8 @@ authors = ["Santiago Carmuega <[email protected]>", "Pi Lanningham <pi.lannin | |
byteorder = "1.4.3" | ||
hex = "0.4.3" | ||
itertools = "0.13.0" | ||
pallas-codec = { version = "=0.30.2", path = "../pallas-codec" } | ||
pallas-crypto = { version = "=0.30.2", path = "../pallas-crypto" } | ||
pallas-codec = { version = "=0.31.0", path = "../pallas-codec" } | ||
pallas-crypto = { version = "=0.31.0", path = "../pallas-crypto" } | ||
rand = "0.8.5" | ||
socket2 = "0.5.5" | ||
thiserror = "1.0.31" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "pallas-traverse" | ||
description = "Utilities to traverse over multi-era block data" | ||
version = "0.30.2" | ||
version = "0.31.0" | ||
edition = "2021" | ||
repository = "https://github.com/txpipe/pallas" | ||
homepage = "https://github.com/txpipe/pallas" | ||
|
@@ -11,10 +11,10 @@ readme = "README.md" | |
authors = ["Santiago Carmuega <[email protected]>"] | ||
|
||
[dependencies] | ||
pallas-primitives = { version = "=0.30.2", path = "../pallas-primitives" } | ||
pallas-addresses = { version = "=0.30.2", path = "../pallas-addresses" } | ||
pallas-crypto = { version = "=0.30.2", path = "../pallas-crypto" } | ||
pallas-codec = { version = "=0.30.2", path = "../pallas-codec" } | ||
pallas-primitives = { version = "=0.31.0", path = "../pallas-primitives" } | ||
pallas-addresses = { version = "=0.31.0", path = "../pallas-addresses" } | ||
pallas-crypto = { version = "=0.31.0", path = "../pallas-crypto" } | ||
pallas-codec = { version = "=0.31.0", path = "../pallas-codec" } | ||
hex = "0.4.3" | ||
thiserror = "1.0.31" | ||
paste = "1.0.14" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "pallas-txbuilder" | ||
description = "An ergonomic Cardano transaction builder" | ||
version = "0.30.2" | ||
version = "0.31.0" | ||
edition = "2021" | ||
repository = "https://github.com/txpipe/pallas" | ||
homepage = "https://github.com/txpipe/pallas" | ||
|
@@ -11,12 +11,12 @@ readme = "README.md" | |
authors = ["Santiago Carmuega <[email protected]>", "Cainã Costa <[email protected]>"] | ||
|
||
[dependencies] | ||
pallas-codec = { path = "../pallas-codec", version = "=0.30.2" } | ||
pallas-crypto = { path = "../pallas-crypto", version = "=0.30.2" } | ||
pallas-primitives = { path = "../pallas-primitives", version = "=0.30.2" } | ||
pallas-traverse = { path = "../pallas-traverse", version = "=0.30.2" } | ||
pallas-addresses = { path = "../pallas-addresses", version = "=0.30.2" } | ||
pallas-wallet = { path = "../pallas-wallet", version = "=0.30.2" } | ||
pallas-codec = { path = "../pallas-codec", version = "=0.31.0" } | ||
pallas-crypto = { path = "../pallas-crypto", version = "=0.31.0" } | ||
pallas-primitives = { path = "../pallas-primitives", version = "=0.31.0" } | ||
pallas-traverse = { path = "../pallas-traverse", version = "=0.31.0" } | ||
pallas-addresses = { path = "../pallas-addresses", version = "=0.31.0" } | ||
pallas-wallet = { path = "../pallas-wallet", version = "=0.31.0" } | ||
serde = { version = "1.0.188", features = ["derive"] } | ||
serde_json = "1.0.107" | ||
thiserror = "1.0.44" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "pallas-utxorpc" | ||
description = "Pallas interoperability with the UTxORPC spec" | ||
version = "0.30.2" | ||
version = "0.31.0" | ||
edition = "2021" | ||
repository = "https://github.com/txpipe/pallas" | ||
homepage = "https://github.com/txpipe/pallas" | ||
|
@@ -14,14 +14,14 @@ authors = ["Santiago Carmuega <[email protected]>"] | |
# utxorpc-spec = { path = "../../../utxorpc/spec/gen/rust" } | ||
utxorpc-spec = { version = "0.11.0" } | ||
|
||
pallas-traverse = { version = "=0.30.2", path = "../pallas-traverse" } | ||
pallas-primitives = { version = "=0.30.2", path = "../pallas-primitives" } | ||
pallas-codec = { version = "=0.30.2", path = "../pallas-codec" } | ||
pallas-crypto = { version = "=0.30.2", path = "../pallas-crypto" } | ||
pallas-traverse = { version = "=0.31.0", path = "../pallas-traverse" } | ||
pallas-primitives = { version = "=0.31.0", path = "../pallas-primitives" } | ||
pallas-codec = { version = "=0.31.0", path = "../pallas-codec" } | ||
pallas-crypto = { version = "=0.31.0", path = "../pallas-crypto" } | ||
prost-types = "0.13.1" | ||
|
||
# TODO: remove this dep once we have multiera params in traverse | ||
pallas-applying = { version = "=0.30.2", path = "../pallas-applying" } | ||
pallas-applying = { version = "=0.31.0", path = "../pallas-applying" } | ||
|
||
[dev-dependencies] | ||
hex = "0.4.3" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "pallas-wallet" | ||
description = "Cardano wallet utilities such as key generation" | ||
version = "0.30.2" | ||
version = "0.31.0" | ||
edition = "2021" | ||
repository = "https://github.com/txpipe/pallas" | ||
homepage = "https://github.com/txpipe/pallas" | ||
|
@@ -12,7 +12,7 @@ authors = ["Santiago Carmuega <[email protected]>"] | |
|
||
[dependencies] | ||
thiserror = "1.0.49" | ||
pallas-crypto = { version = "=0.30.2", path = "../pallas-crypto" } | ||
pallas-crypto = { version = "=0.31.0", path = "../pallas-crypto" } | ||
ed25519-bip32 = "0.4.1" | ||
bip39 = { version = "2.0.0", features = ["rand_core"] } | ||
cryptoxide = "0.4.4" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "pallas" | ||
description = "Rust-native building blocks for the Cardano blockchain ecosystem." | ||
version = "0.30.2" | ||
version = "0.31.0" | ||
edition = "2021" | ||
repository = "https://github.com/txpipe/pallas" | ||
homepage = "https://github.com/txpipe/pallas" | ||
|
@@ -11,19 +11,19 @@ readme = "../README.md" | |
authors = ["Santiago Carmuega <[email protected]>"] | ||
|
||
[dependencies] | ||
pallas-network = { version = "=0.30.2", path = "../pallas-network/" } | ||
pallas-primitives = { version = "=0.30.2", path = "../pallas-primitives/" } | ||
pallas-traverse = { version = "=0.30.2", path = "../pallas-traverse/" } | ||
pallas-addresses = { version = "=0.30.2", path = "../pallas-addresses/" } | ||
pallas-crypto = { version = "=0.30.2", path = "../pallas-crypto/" } | ||
pallas-codec = { version = "=0.30.2", path = "../pallas-codec/" } | ||
pallas-utxorpc = { version = "=0.30.2", path = "../pallas-utxorpc/" } | ||
pallas-configs = { version = "=0.30.2", path = "../pallas-configs/" } | ||
pallas-txbuilder = { version = "=0.30.2", path = "../pallas-txbuilder/" } | ||
pallas-math = { version = "=0.30.2", path = "../pallas-math/", optional = true } | ||
pallas-applying = { version = "=0.30.2", path = "../pallas-applying/", optional = true } | ||
pallas-wallet = { version = "=0.30.2", path = "../pallas-wallet/", optional = true } | ||
pallas-hardano = { version = "=0.30.2", path = "../pallas-hardano/", optional = true } | ||
pallas-network = { version = "=0.31.0", path = "../pallas-network/" } | ||
pallas-primitives = { version = "=0.31.0", path = "../pallas-primitives/" } | ||
pallas-traverse = { version = "=0.31.0", path = "../pallas-traverse/" } | ||
pallas-addresses = { version = "=0.31.0", path = "../pallas-addresses/" } | ||
pallas-crypto = { version = "=0.31.0", path = "../pallas-crypto/" } | ||
pallas-codec = { version = "=0.31.0", path = "../pallas-codec/" } | ||
pallas-utxorpc = { version = "=0.31.0", path = "../pallas-utxorpc/" } | ||
pallas-configs = { version = "=0.31.0", path = "../pallas-configs/" } | ||
pallas-txbuilder = { version = "=0.31.0", path = "../pallas-txbuilder/" } | ||
pallas-math = { version = "=0.31.0", path = "../pallas-math/", optional = true } | ||
pallas-applying = { version = "=0.31.0", path = "../pallas-applying/", optional = true } | ||
pallas-wallet = { version = "=0.31.0", path = "../pallas-wallet/", optional = true } | ||
pallas-hardano = { version = "=0.31.0", path = "../pallas-hardano/", optional = true } | ||
|
||
[features] | ||
hardano = ["pallas-hardano"] | ||
|