-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
31 lines (28 loc) · 1.07 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
[package]
name = "mix_link"
version = "0.2.0"
authors = ["David Stainton <dawuud@riseup.net>"]
description = "message oriented noise based cryptographic link layer for mixnets"
homepage = "https://github.com/sphinx-cryptography/mix_link"
repository = "https://github.com/sphinx-cryptography/mix_link"
documentation = "https://docs.rs/mix_link/"
readme = "README.md"
keywords = ["cryptography", "noise", "network", "mixnet", "link-layer"]
license = "AGPL-3.0-only"
[dependencies]
snow = { version = "0.7.3", git = "https://github.com/sphinx-cryptography/snow.git", branch = "master", features = ["hfs", "nist3_kyber1024"] }
byteorder = "1.2.2"
sphinxcrypto = "0.1.0"
subtle = { package = "subtle-ng", version = "2.4.1" }
x25519-dalek-ng = { git = "https://github.com/sphinx-cryptography/x25519-dalek-ng.git", branch = "master" }
arrayref = "^0.3.6"
[features]
nightly = ["subtle/nightly"]
std = ["subtle/std"]
[dev-dependencies]
rustc-serialize = "0.3.24"
rand_core = { version = "0.5", default-features = false }
serde_derive = "1.0.94"
serde = "1.0.94"
serde_json = "1.0.40"
hex = "0.3.2"