Release 0.13.1
pallas@0.13.1 pallas-addresses@0.13.1 pallas-codec@0.13.1 pallas-crypto@0.13.1 pallas-miniprotocols@0.13.1 pallas-multiplexer@0.13.1 pallas-primitives@0.13.1 pallas-traverse@0.13.1 Generated by cargo-workspaces
This commit is contained in:
parent
1ed3a19f8d
commit
1f0eb3bfc0
9 changed files with 15 additions and 15 deletions
|
|
@ -1,7 +1,7 @@
|
||||||
use pallas::network::{
|
use pallas::network::{
|
||||||
miniprotocols::{
|
miniprotocols::{
|
||||||
handshake::{n2n::VersionTable, Initiator},
|
handshake::{n2n::VersionTable, Initiator},
|
||||||
run_agent, Point, MAINNET_MAGIC,
|
run_agent, Point, TESTNET_MAGIC,
|
||||||
},
|
},
|
||||||
multiplexer::{bearers::Bearer, StdPlexer},
|
multiplexer::{bearers::Bearer, StdPlexer},
|
||||||
};
|
};
|
||||||
|
|
@ -22,7 +22,7 @@ impl Observer for BlockPrinter {
|
||||||
fn main() {
|
fn main() {
|
||||||
env_logger::init();
|
env_logger::init();
|
||||||
|
|
||||||
let bearer = Bearer::connect_tcp("relays-new.cardano-mainnet.iohk.io:3001").unwrap();
|
let bearer = Bearer::connect_tcp("relays-new.cardano-testnet.iohkdev.io:3001").unwrap();
|
||||||
|
|
||||||
let mut plexer = StdPlexer::new(bearer);
|
let mut plexer = StdPlexer::new(bearer);
|
||||||
let mut channel0 = plexer.use_channel(0).into();
|
let mut channel0 = plexer.use_channel(0).into();
|
||||||
|
|
@ -31,18 +31,18 @@ fn main() {
|
||||||
plexer.muxer.spawn();
|
plexer.muxer.spawn();
|
||||||
plexer.demuxer.spawn();
|
plexer.demuxer.spawn();
|
||||||
|
|
||||||
let versions = VersionTable::v4_and_above(MAINNET_MAGIC);
|
let versions = VersionTable::v4_and_above(TESTNET_MAGIC);
|
||||||
let _last = run_agent(Initiator::initial(versions), &mut channel0).unwrap();
|
let _last = run_agent(Initiator::initial(versions), &mut channel0).unwrap();
|
||||||
|
|
||||||
let range = (
|
let range = (
|
||||||
Point::Specific(
|
Point::Specific(
|
||||||
97,
|
63528597,
|
||||||
hex::decode("cf7fa60bbd210273d79fa48d11ab1d141242af32b231cc40ce3411230a8d3c61")
|
hex::decode("3f3d81c7b88f0fa28867541c5fea8794125cccf6d6c9ee0037a1dbb064130dfd")
|
||||||
.unwrap(),
|
.unwrap(),
|
||||||
),
|
),
|
||||||
Point::Specific(
|
Point::Specific(
|
||||||
99,
|
63528597,
|
||||||
hex::decode("a52cca923a67326ea9c409e958a17a77990be72f3607625ec5b3d456202e223e")
|
hex::decode("3f3d81c7b88f0fa28867541c5fea8794125cccf6d6c9ee0037a1dbb064130dfd")
|
||||||
.unwrap(),
|
.unwrap(),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|
|
||||||
|
|
@ -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.13.0"
|
version = "0.13.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"
|
||||||
|
|
|
||||||
|
|
@ -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.13.0"
|
version = "0.13.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"
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "pallas-crypto"
|
name = "pallas-crypto"
|
||||||
description = "Cryptographic primitives for Cardano"
|
description = "Cryptographic primitives for Cardano"
|
||||||
version = "0.13.0"
|
version = "0.13.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"
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "pallas-miniprotocols"
|
name = "pallas-miniprotocols"
|
||||||
description = "Implementation of the Ouroboros network mini-protocols state-machines"
|
description = "Implementation of the Ouroboros network mini-protocols state-machines"
|
||||||
version = "0.13.0"
|
version = "0.13.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"
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "pallas-multiplexer"
|
name = "pallas-multiplexer"
|
||||||
description = "Multithreaded Ouroboros multiplexer implementation using mpsc channels"
|
description = "Multithreaded Ouroboros multiplexer implementation using mpsc channels"
|
||||||
version = "0.13.0"
|
version = "0.13.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"
|
||||||
|
|
|
||||||
|
|
@ -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.13.0"
|
version = "0.13.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"
|
||||||
|
|
|
||||||
|
|
@ -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.13.0"
|
version = "0.13.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"
|
||||||
|
|
|
||||||
|
|
@ -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.13.0"
|
version = "0.13.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"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue