forked from cyphernet-labs/rust-netservices
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (36 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
[package]
name = "netservices"
description = "Library for building scalable privacy-preserving microservices P2P nodes"
authors = ["Dr. Maxim Orlovsky <[email protected]>"]
keywords = ["privacy", "cypherpunk", "tor", "microservices", "reactor"]
categories = ["network-programming", "cryptography", "concurrency"]
homepage = "https://cyphernet.org"
repository = "https://github.com/Cyphernet-DAO/rust-netservices"
version = "0.1.0"
rust-version = "1.65"
edition = "2021"
license = "Apache-2.0"
readme = "README.md"
[dependencies]
amplify = "4.0.0-beta.1"
io-reactor = { version = "0.1.0", optional = true }
ed25519-compact = "2.0.4"
cyphernet = { version = "0.1.0", features = ["ed25519", "pem", "multibase", "noise_sha2", "noise_x25519", "noise-framework", "mixnets", "dns"] }
mio = { version = "0.8.5", optional = true }
socket2 = { version = "0.4.7", optional = true }
libc = "0.2.138"
log_crate = { package = "log", version = "0.4.17", optional = true }
rand = "0.8.5" # Used in SplitIo shared secret
[dev-dependencies]
cyphernet = { version = "0.1.0", features = ["ed25519"] }
bitcoin_hashes = "0.11.0"
log_crate = { package = "log", version = "0.4.17" }
[features]
default = ["reactor", "socket2"]
all = ["reactor", "connect_nonblocking", "mio", "log"]
reactor = ["io-reactor", "connect_nonblocking"]
connect_nonblocking = ["socket2"]
log = ["log_crate", "io-reactor/log"]
[package.metadata.docs.rs]
all-features = true
rustc-args = ["--cfg", "docsrs"]