forked from Kuska-ssb/handshake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
46 lines (37 loc) · 964 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
35
36
37
38
39
40
41
42
43
44
45
[package]
name = "kuska-handshake"
version = "0.1.1"
authors = ["Dhole <[email protected]>", "Adria Massanet <[email protected]>"]
edition = "2018"
[lib]
name = "kuska_handshake"
[dependencies]
sodiumoxide = { git = "https://github.com/Dhole/sodiumoxidez", branch = "extra" }
async-std = { version = "1.5.0", features=["unstable","attributes"] }
futures = "0.3.5"
log = "0.4.8"
tokio = { version = "0.2.20", features=["full"] }
hex = "0.4.2"
thiserror = "1.0"
[dev-dependencies]
test_utils = { path = "test_utils" }
crossbeam = "0.7.3"
env_logger = "0.7.1"
base64 = "0.12.1"
[features]
default = []
sync = []
async_std = []
tokio_compat = [ "async_std" ]
[[example]]
name = "handshake-boxstream-bench-sync"
required-features = ["sync"]
[[example]]
name = "handshake-boxstream"
required-features = ["sync"]
[[example]]
name = "handshake"
required-features = ["sync"]
[[example]]
name = "handshake-boxstream-bench-async"
required-features = ["async_std"]