[package]
edition = "2021"
rust-version = "1.88"
name = "spotlib"
version = "0.1.1"
authors = ["Karpelès Lab Inc."]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Client for the Spot secure messaging network: end-to-end encrypted messaging over websocket connections"
readme = "README.md"
keywords = [
"spot",
"messaging",
"e2ee",
"websocket",
]
categories = [
"network-programming",
"cryptography",
]
license = "MIT"
repository = "https://github.com/KarpelesLab/spotlib-rs"
[features]
default = ["native"]
native = []
[lib]
name = "spotlib"
path = "src/lib.rs"
[[example]]
name = "spot_test"
path = "examples/spot_test.rs"
[dependencies.bottlers]
version = "0.1.2"
[dependencies.ciborium]
version = "0.2"
[dependencies.purecrypto]
version = "0.6.28"
[dependencies.rsurl]
version = "0.1.7"
features = ["purecrypto-tls"]
default-features = false
[dependencies.serde_json]
version = "1"
[dependencies.spotproto]
version = "0.1.1"
[target.'cfg(target_arch = "wasm32")'.dependencies.futures-channel]
version = "0.3"
features = ["std"]
[target.'cfg(target_arch = "wasm32")'.dependencies.futures-util]
version = "0.3"
features = ["std"]
default-features = false
[target.'cfg(target_arch = "wasm32")'.dependencies.gloo-timers]
version = "0.3"
features = ["futures"]
[target.'cfg(target_arch = "wasm32")'.dependencies.js-sys]
version = "0.3"
[target.'cfg(target_arch = "wasm32")'.dependencies.wasm-bindgen-futures]
version = "0.4"