-
Notifications
You must be signed in to change notification settings - Fork 93
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (35 loc) · 829 Bytes
/
Copy pathCargo.toml
File metadata and controls
38 lines (35 loc) · 829 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[package]
name = "pallas-network"
description = "Ouroboros networking stack using async IO"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
repository.workspace = true
homepage.workspace = true
license.workspace = true
documentation = "https://docs.rs/pallas"
readme = "README.md"
authors.workspace = true
[dependencies]
byteorder.workspace = true
hex.workspace = true
itertools.workspace = true
pallas-codec.workspace = true
pallas-crypto.workspace = true
rand.workspace = true
socket2.workspace = true
thiserror.workspace = true
tokio = { version = "1", features = [
"rt",
"net",
"io-util",
"time",
"sync",
"macros",
] }
tracing.workspace = true
[dev-dependencies]
tracing-subscriber = "0.3.16"
tokio = { version = "1", features = ["full"] }
[features]
blueprint = []