golgi/Cargo.toml

27 lines
837 B
TOML
Raw Normal View History

2021-12-02 13:12:52 +00:00
[package]
name = "golgi"
2022-08-09 07:26:39 +00:00
version = "0.2.4"
2021-12-02 13:12:52 +00:00
edition = "2021"
2022-02-15 09:19:13 +00:00
authors = ["Max Fowler <max@mfowler.info>", "Andrew Reid <glyph@mycelial.technology>"]
readme = "README.md"
description = "An asynchronous, experimental Scuttlebutt client library"
repository = "https://git.coopcloud.tech/golgi-ssb/golgi"
2022-02-15 12:56:38 +00:00
homepage = "http://golgi.mycelial.technology"
2022-02-15 09:19:13 +00:00
license = "LGPL-3.0"
keywords = ["scuttlebutt", "ssb", "decentralized", "peer-for-peer", "p4p"]
exclude = ["git_hooks/", "examples/"]
2021-12-02 13:12:52 +00:00
[dependencies]
async-std = "1.10.0"
2022-02-14 10:23:34 +00:00
async-stream = "0.3.2"
2021-12-02 13:12:52 +00:00
base64 = "0.13.0"
2022-02-17 12:56:50 +00:00
futures = "0.3.21"
2022-05-26 21:03:43 +00:00
log = "0.4"
2021-12-02 13:12:52 +00:00
hex = "0.4.3"
kuska-handshake = { version = "0.2.0", features = ["async_std"] }
kuska-sodiumoxide = "0.2.5-0"
2022-08-08 07:13:55 +00:00
kuska-ssb = { git = "https://github.com/Kuska-ssb/ssb" }
2021-12-28 19:57:30 +00:00
serde = { version = "1", features = ["derive"] }
2021-12-02 13:12:52 +00:00
serde_json = "1"
2022-02-24 17:43:28 +00:00
sha2 = "0.10.2"