kuska-ssb/Cargo.toml

36 lines
924 B
TOML
Raw Normal View History

2020-01-05 16:11:00 +00:00
[package]
name = "kuska-ssb"
2020-05-10 08:57:54 +00:00
version = "0.2.0"
2020-01-05 16:11:00 +00:00
authors = ["Dhole <dhole@riseup.net>", "Adria Massanet <adria@codecontext.io>"]
edition = "2018"
[lib]
name = "kuska_ssb"
[dependencies]
2020-05-10 09:13:57 +00:00
kuska-handshake = { git = "https://github.com/Kuska-ssb/handshake", branch = "master" , features=["sync","async_std"] }
2020-01-05 16:11:00 +00:00
sodiumoxide = { git = "https://github.com/Dhole/sodiumoxidez", branch = "extra" }
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-07 16:45:09 +00:00
crossbeam = "0.7.3"
2020-01-05 16:11:00 +00:00
log = "0.4.8"
2020-01-07 16:45:09 +00:00
env_logger = "0.7.1"
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-01-05 16:11:00 +00:00
lazy_static = "1.4.0"
rand = "0.7.3"
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"
[[example]]
name = "ssb-cli"
[dev-dependencies]
structopt = "0.3.9"
2020-04-05 13:04:01 +00:00
regex = "1.3.4"