gossip/Cargo.toml

26 lines
808 B
TOML
Raw Normal View History

2022-12-20 04:40:16 +00:00
[package]
name = "gossip"
version = "0.3.0"
2022-12-20 05:30:56 +00:00
description = "A social media client for nostr"
authors = ["Mike Dilger <mike@mikedilger.com>"]
2022-12-20 04:41:04 +00:00
license = "MIT"
2022-12-20 05:30:56 +00:00
repository = "https://github.com/mikedilger/gossip"
homepage = "https://github.com/mikedilger/gossip"
default-run = "gossip"
edition = "2021"
2022-12-20 04:40:16 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
dirs = "4.0"
lazy_static = "1.4"
nostr-proto = { git = "https://github.com/mikedilger/nostr-proto", branch = "master" }
rusqlite = { version = "0.28", features = ["bundled", "chrono", "serde_json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0"
tokio = { version = "1.0", features = ["full"] }
2022-12-20 04:51:16 +00:00
tracing = "0.1"
tracing-subscriber = "0.3"
zeroize = "1.5"