2021-12-02 13:12:52 +00:00
|
|
|
[package]
|
|
|
|
name = "golgi"
|
2022-02-26 12:27:39 +00:00
|
|
|
version = "0.1.1"
|
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"
|
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-03-01 11:54:52 +00:00
|
|
|
#kuska-ssb = "0.4.0"
|
|
|
|
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"
|