gossip/Cargo.toml

44 lines
1.4 KiB
TOML
Raw Normal View History

2022-12-20 04:40:16 +00:00
[package]
name = "gossip"
version = "0.3.1-unstable"
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]
2022-12-27 18:05:49 +00:00
base64 = "0.20"
2023-01-06 18:55:17 +00:00
dashmap = "5.4"
dirs = "4.0"
2022-12-28 21:56:17 +00:00
eframe = { version = "0.20", features = [ "dark-light", "persistence" ] }
2022-12-20 06:57:06 +00:00
egui_extras = { version = "0.20", features = [ "svg", "tracing" ] }
futures = "0.3"
futures-util = "0.3"
hex = "0.4"
http = "0.2"
2022-12-20 06:57:06 +00:00
image = "0.24"
lazy_static = "1.4"
2023-01-01 18:22:55 +00:00
linkify = "0.9"
2022-12-23 10:29:59 +00:00
nostr-types = { git = "https://github.com/mikedilger/nostr-types" }
2023-01-02 22:17:47 +00:00
parking_lot = "0.12"
rand = "0.8"
regex = "1.7"
reqwest = { version = "0.11", features = ["json"] }
rusqlite = { version = "0.28", features = ["bundled", "chrono", "serde_json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sha2 = "0.10"
textnonce = "1.0"
thiserror = "1.0"
tokio = { version = "1", features = ["full"] }
2022-12-20 04:51:16 +00:00
tracing = "0.1"
2022-12-26 08:02:08 +00:00
tracing-subscriber = { version = "0.3", features = [ "std", "env-filter" ] }
tokio-tungstenite = { version = "0.18", features = [ "rustls-tls-native-roots" ] }
tungstenite = { version = "0.18", features = [ "rustls-tls-native-roots" ] }
zeroize = "1.5"