kuska-ssb/Cargo.toml

38 lines
924 B
TOML
Raw Permalink Normal View History

2020-01-05 16:11:00 +00:00
[package]
name = "kuska-ssb"
2022-05-25 11:48:35 +00:00
version = "0.4.1"
2022-02-19 22:44:28 +00:00
authors = ["Dhole <dhole@riseup.net>", "Adria Massanet <adria@codecontext.io>", "Andrew Reid <glyph@mycelial.technology>"]
edition = "2021"
2022-02-19 22:44:28 +00:00
description = "Secure Scuttlebutt library"
license = "AGPL-3.0"
2020-01-05 16:11:00 +00:00
[lib]
name = "kuska_ssb"
[dependencies]
kuska-handshake = { version="0.2", features=["sync","async_std"] }
kuska-sodiumoxide = "0.2.5-0"
2020-01-07 16:45:09 +00:00
base64 = "0.11.0"
hex = "0.4.0"
2020-05-09 22:13:34 +00:00
async-std = { version = "1.5.0", features=["unstable","attributes"] }
2020-01-05 16:11:00 +00:00
log = "0.4.8"
2020-01-21 12:34:58 +00:00
serde = { version = "1.0.104", features = ["derive"] }
serde_json = { version = "1.0.48", features=["preserve_order","arbitrary_precision"] }
2020-01-05 16:11:00 +00:00
dirs = "2.0"
2020-01-21 12:34:58 +00:00
futures = "0.3.4"
2020-05-10 08:57:54 +00:00
get_if_addrs = "0.5.3"
regex = "1.3.7"
once_cell = "1.3.1"
async-stream = "0.2.1"
2020-06-20 19:22:19 +00:00
thiserror = "1.0.20"
[[example]]
name = "ssb-cli"
[dev-dependencies]
2020-06-20 19:43:21 +00:00
crossbeam = "0.7.3"
env_logger = "0.7.1"
structopt = "0.3.9"
2020-04-05 13:04:01 +00:00
regex = "1.3.4"
2020-06-20 19:43:21 +00:00
rand = "0.7.3"