forked from dtn7/dtn7-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
56 lines (53 loc) · 1.43 KB
/
Cargo.toml
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[package]
name = "dtn7"
version = "0.12.0"
authors = ["Lars Baumgaertner <[email protected]>"]
description = "Rust delay-tolerant-networking daemon and CLI tools based upon bp7 (dtn version 7 draft)"
edition = "2018"
license = "MIT OR Apache-2.0"
categories = ["command-line-utilities", "network-programming"]
repository = "https://github.com/dtn7/dtn7-rs"
keywords = ["peer2peer", "dtn"]
exclude = [".vscode/", ".travis.yml"]
readme = "README.md"
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_cbor = "0.11"
serde_json = "1.0"
serde_bytes = "0.11"
url = "2.1"
rand = "0.7"
#tokio = { version = "0.2.22", features = ["rt-core", "rt-threaded", "tcp", "udp"] }
tokio = { version = "0.2.22", features = ["full"] }
futures = "0.3.5"
pretty_env_logger = "0.4.0"
log = "0.4"
net2 = "0.2"
bytes = "0.5.6"
clap = "2.33.3"
config = "0.10.1"
lazy_static = "1.4.0"
bp7 = "0.6.5"
crossbeam = "0.7"
anyhow = "1.0.32"
parking_lot = "0.11"
actix-web = "3.0.2"
actix-rt = "1.1.1"
tokio-util = { version = "0.3.1", features = ["codec"] }
futures-util = "0.3.5"
async-trait = "0.1.40"
attohttpc = { version = "0.15", default-features = false }
tinytemplate = "1.1.0"
humantime = "2.0.1"
actix-web-actors = "3.0.0"
actix = "0.10.0"
ws = "0.9.1"
tempfile = "3.1.0"
humansize = "1.1.0"
dtn7-plus = "0.1.6"
sled = "0.34.4"
bitflags = "1.2.1"
#rweb = { version = "0.4.0", default-features = false }
[lib]
name = "dtn7"
path = "src/lib.rs"