Release 0.3.3
pallas-alonzo@0.3.3 pallas-blockfetch@0.3.3 pallas-chainsync@0.3.3 pallas-handshake@0.3.3 pallas-localstate@0.3.3 pallas-machines@0.3.3 pallas-multiplexer@0.3.3 pallas-txsubmission@0.3.3 Generated by cargo-workspaces
This commit is contained in:
parent
2a880af828
commit
d04582253a
9 changed files with 17 additions and 17 deletions
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "pallas-alonzo"
|
||||
description = "Ledger primitives and cbor codec for the Alonzo era"
|
||||
version = "0.3.2"
|
||||
version = "0.3.3"
|
||||
edition = "2021"
|
||||
repository = "https://github.com/txpipe/pallas"
|
||||
homepage = "https://github.com/txpipe/pallas"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "pallas-blockfetch"
|
||||
description = "Implementation of the Ouroboros network blockfetch mini-protocol"
|
||||
version = "0.3.2"
|
||||
version = "0.3.3"
|
||||
edition = "2021"
|
||||
repository = "https://github.com/txpipe/pallas"
|
||||
homepage = "https://github.com/txpipe/pallas"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "pallas-chainsync"
|
||||
description = "Implementation of the Ouroboros network chainsync mini-protocol"
|
||||
version = "0.3.1"
|
||||
version = "0.3.3"
|
||||
edition = "2021"
|
||||
repository = "https://github.com/txpipe/pallas"
|
||||
homepage = "https://github.com/txpipe/pallas"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "pallas-handshake"
|
||||
description = "Implementation of the Ouroboros network handshake mini-protocol"
|
||||
version = "0.3.1"
|
||||
version = "0.3.3"
|
||||
edition = "2021"
|
||||
repository = "https://github.com/txpipe/pallas"
|
||||
homepage = "https://github.com/txpipe/pallas"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "pallas-localstate"
|
||||
description = "Implementation of the Ouroboros network local state query mini-protocol"
|
||||
version = "0.3.1"
|
||||
version = "0.3.3"
|
||||
edition = "2021"
|
||||
repository = "https://github.com/txpipe/pallas"
|
||||
homepage = "https://github.com/txpipe/pallas"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "pallas-machines"
|
||||
description = "A framework for implementing state machines for Ouroboros network mini-protocols"
|
||||
version = "0.3.1"
|
||||
version = "0.3.3"
|
||||
edition = "2021"
|
||||
repository = "https://github.com/txpipe/pallas"
|
||||
homepage = "https://github.com/txpipe/pallas"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "pallas-multiplexer"
|
||||
description = "Multithreaded Ouroboros multiplexer implementation using mpsc channels"
|
||||
version = "0.3.2"
|
||||
version = "0.3.3"
|
||||
edition = "2021"
|
||||
repository = "https://github.com/txpipe/pallas"
|
||||
homepage = "https://github.com/txpipe/pallas"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "pallas-txsubmission"
|
||||
description = "Implementation of the Ouroboros network txsubmission mini-protocol"
|
||||
version = "0.3.1"
|
||||
version = "0.3.3"
|
||||
edition = "2021"
|
||||
repository = "https://github.com/txpipe/pallas"
|
||||
homepage = "https://github.com/txpipe/pallas"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "pallas"
|
||||
description = "Rust-native building blocks for the Cardano blockchain ecosystem."
|
||||
version = "0.3.1"
|
||||
version = "0.3.3"
|
||||
edition = "2021"
|
||||
repository = "https://github.com/txpipe/pallas"
|
||||
homepage = "https://github.com/txpipe/pallas"
|
||||
|
|
@ -13,11 +13,11 @@ authors = [
|
|||
]
|
||||
|
||||
[dependencies]
|
||||
pallas-multiplexer = { version = "0.3.0", path = "../pallas-multiplexer/" }
|
||||
pallas-machines = { version = "0.3.0", path = "../pallas-machines/" }
|
||||
pallas-handshake = { version = "0.3.0", path = "../pallas-handshake/" }
|
||||
pallas-chainsync = { version = "0.3.0", path = "../pallas-chainsync/" }
|
||||
pallas-blockfetch = { version = "0.3.0", path = "../pallas-blockfetch/" }
|
||||
pallas-localstate = { version = "0.3.0", path = "../pallas-localstate/" }
|
||||
pallas-txsubmission = { version = "0.3.0", path = "../pallas-txsubmission/" }
|
||||
pallas-alonzo = { version = "0.3.0", path = "../pallas-alonzo/", features=["crypto"] }
|
||||
pallas-multiplexer = { version = "0.3.3", path = "../pallas-multiplexer/" }
|
||||
pallas-machines = { version = "0.3.3", path = "../pallas-machines/" }
|
||||
pallas-handshake = { version = "0.3.3", path = "../pallas-handshake/" }
|
||||
pallas-chainsync = { version = "0.3.3", path = "../pallas-chainsync/" }
|
||||
pallas-blockfetch = { version = "0.3.3", path = "../pallas-blockfetch/" }
|
||||
pallas-localstate = { version = "0.3.3", path = "../pallas-localstate/" }
|
||||
pallas-txsubmission = { version = "0.3.3", path = "../pallas-txsubmission/" }
|
||||
pallas-alonzo = { version = "0.3.3", path = "../pallas-alonzo/", features=["crypto"] }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue