-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
29 lines (26 loc) · 940 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
[package]
name = "ssb-handshake"
version = "0.5.1"
authors = ["sean billig <[email protected]>"]
edition = "2018"
license = "LGPL-3.0"
description = "Secret-handshake protocol for Secure Scuttlebutt"
repository = "https://github.com/sunrise-choir/ssb-handshake"
documentation = "https://docs.rs/ssb-handshake/"
readme = "README.md"
keywords = ["secret-handshake", "handshake", "ssb", "scuttlebutt", "shs"]
include = ["src/**/*", "LICENSE", "README.md"]
[features]
default = ["std"]
std = ["futures-io", "futures-util", "ssb-crypto/getrandom", "genio/std"]
[dependencies]
futures-io = { version = "0.3.8", optional = true }
futures-util = { version = "0.3.8", optional = true }
ssb-crypto = { version = "0.2.2", default-features = false, features = ["dalek"] }
zerocopy = "0.3.0"
genio = { version = "0.2.1", default-features = false }
[dev-dependencies]
async-ringbuffer = "0.5.5"
hex = "0.4.2"
futures = "0.3.8"
readwrite = "0.1.2"