forked from kc1212/gnunet-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
34 lines (32 loc) · 875 Bytes
/
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
[package]
name = "gnunet"
version = "0.0.15"
authors = ["Andrew Cann <[email protected]>"]
description = "Bindings for GNUnet: GNU's framework for secure peer-to-peer networking"
documentation = "http://canndrew.org/rust-doc/gnunet"
license = "GPL-3.0"
readme = "README.md"
keywords = ["gnunet", "gns", "p2p"]
edition = "2018"
[dependencies]
rand = "0.3"
byteorder = "1.3.4"
rust-crypto = "0.2.36"
num = "0.1.24"
regex = "0.1.71"
thiserror = "1.0.18"
libc = "0.2.70"
num-derive = "0.3.0"
num-traits = "0.2.11"
bitflags = "1.2.1"
async-std = { version = "1.5.0", features = ["attributes"] }
futures = "0.3.5" # futures_util
tracing = "0.1.14"
tracing-futures = { version = "0.2.4", features = ["std-future"], default-features = false }
zerocopy = "0.3.0"
smallvec = "1.4.0"
either = "1.5.3"
chrono = "0.4.11"
base32 = "0.4.0"
[dev-dependencies]
tracing-subscriber = "0.2.5"