Skip to content

Commit 7be6dc9

Browse files
committed
chore(network): fix network crate metadata
1 parent b4e46a0 commit 7be6dc9

3 files changed

Lines changed: 26 additions & 4 deletions

File tree

pallas-network/Cargo.toml

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,13 @@ version = "1.0.0-alpha.2"
55
edition = "2021"
66
repository = "https://github.com/txpipe/pallas"
77
homepage = "https://github.com/txpipe/pallas"
8-
documentation = "https://docs.rs/pallas-upstream"
8+
documentation = "https://docs.rs/pallas"
99
license = "Apache-2.0"
1010
readme = "README.md"
11-
authors = ["Santiago Carmuega <santiago@carmuega.me>", "Pi Lanningham <pi.lanningham@gmail.com>"]
11+
authors = [
12+
"Santiago Carmuega <santiago@carmuega.me>",
13+
"Pi Lanningham <pi.lanningham@gmail.com>",
14+
]
1215

1316
[dependencies]
1417
byteorder = "1.4.3"
@@ -19,7 +22,14 @@ pallas-crypto = { version = "=1.0.0-alpha.2", path = "../pallas-crypto" }
1922
rand = "0.8.5"
2023
socket2 = "0.5.5"
2124
thiserror = "1.0.31"
22-
tokio = { version = "1", features = ["rt", "net", "io-util", "time", "sync", "macros"] }
25+
tokio = { version = "1", features = [
26+
"rt",
27+
"net",
28+
"io-util",
29+
"time",
30+
"sync",
31+
"macros",
32+
] }
2333
tracing = "0.1.37"
2434

2535
[dev-dependencies]

pallas-network2/Cargo.toml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
11
[package]
22
name = "pallas-network2"
3-
version = "0.1.0"
3+
description = "Ouroboros networking stack for P2P interactions"
4+
version = "1.0.0-alpha.2"
45
edition = "2024"
6+
repository = "https://github.com/txpipe/pallas"
7+
homepage = "https://github.com/txpipe/pallas"
8+
documentation = "https://docs.rs/pallas"
9+
license = "Apache-2.0"
10+
readme = "README.md"
11+
authors = ["Santiago Carmuega <santiago@carmuega.me>"]
512
publish = false
613

714
[dependencies]

pallas-network2/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Pallas Network 2
2+
3+
An implementation of the Ouroboros networking stack. The `pallas-network2` crate is a new take on the whole networking approach that prioritizes P2P operations over the _client-server_ approach used in the prior version.
4+
5+
At some point, once this new version is thoroughly tested and adopted by downstream clients, `network2` will replace the original one.

0 commit comments

Comments
 (0)