27 lines
846 B
TOML
27 lines
846 B
TOML
[package]
|
|
name = "golgi"
|
|
version = "0.1.1"
|
|
edition = "2021"
|
|
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"
|
|
homepage = "http://golgi.mycelial.technology"
|
|
license = "LGPL-3.0"
|
|
keywords = ["scuttlebutt", "ssb", "decentralized", "peer-for-peer", "p4p"]
|
|
exclude = ["git_hooks/", "examples/"]
|
|
|
|
[dependencies]
|
|
async-std = "1.10.0"
|
|
async-stream = "0.3.2"
|
|
base64 = "0.13.0"
|
|
futures = "0.3.21"
|
|
hex = "0.4.3"
|
|
kuska-handshake = { version = "0.2.0", features = ["async_std"] }
|
|
kuska-sodiumoxide = "0.2.5-0"
|
|
#kuska-ssb = "0.4.0"
|
|
kuska-ssb = { git = "https://github.com/Kuska-ssb/ssb" }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
sha2 = "0.10.2"
|