-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
37 lines (33 loc) · 959 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
[package]
name = "kuska-ssb"
version = "0.4.3"
authors = ["Dhole <[email protected]>", "Adria Massanet <[email protected]>", "Andrew Reid <[email protected]>"]
edition = "2021"
description = "Secure Scuttlebutt library"
license = "AGPL-3.0"
[lib]
name = "kuska_ssb"
[dependencies]
kuska-handshake = { git = "https://github.com/Kuska-ssb/handshake.git", features = ["async_std"] }
kuska-sodiumoxide = "0.2.5-0"
base64 = "0.11.0"
hex = "0.4.0"
async-std = { version = "1.12.0", features=["unstable", "attributes"] }
log = "0.4.8"
serde = { version = "1.0.104", features = ["derive"] }
serde_json = { version = "1.0.48", features=["preserve_order", "arbitrary_precision"] }
dirs = "2.0"
futures = "0.3.4"
get_if_addrs = "0.5.3"
regex = "1.3.7"
once_cell = "1.3.1"
async-stream = "0.2.1"
thiserror = "1.0.20"
[[example]]
name = "ssb-cli"
[dev-dependencies]
crossbeam = "0.7.3"
env_logger = "0.7.1"
structopt = "0.3.9"
regex = "1.3.4"
rand = "0.7.3"