-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (34 loc) · 1.01 KB
/
Cargo.toml
File metadata and controls
36 lines (34 loc) · 1.01 KB
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
[package]
name = "freenet-test-network"
version = "0.1.23"
edition = "2021"
license = "LGPL-3.0-only"
description = "Reliable test network infrastructure for Freenet"
repository = "https://github.com/freenet/freenet-test-network"
keywords = ["freenet", "testing", "p2p", "network"]
categories = ["development-tools::testing"]
[dependencies]
tokio = { version = "1", features = ["full"] }
tokio-tungstenite = { version = "0.27", features = ["rustls-tls-webpki-roots"] }
anyhow = "1"
thiserror = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tracing = "0.1"
which = "8.0.0"
sysinfo = "0.37.2"
futures = "0.3.31"
chrono = { version = "0.4", default-features = false, features = ["std", "clock", "serde"] }
freenet-stdlib = { version = "0.1.29", features = ["net"] }
regex = "1"
ssh2 = "0.9"
bollard = "0.18"
ipnetwork = "0.20"
rand = "0.8"
tar = "0.4"
x25519-dalek = { version = "2", features = ["static_secrets"] }
hex = "0.4"
[dev-dependencies]
testresult = "0.4"
tracing-subscriber = "0.3"
humantime-serde = "1"