gossip/Cargo.toml
2023-02-10 20:51:32 +13:00

61 lines
1.9 KiB
TOML

[package]
name = "gossip"
version = "0.3.1-unstable"
description = "A social media client for nostr"
authors = ["Mike Dilger <mike@mikedilger.com>"]
license = "MIT"
repository = "https://github.com/mikedilger/gossip"
homepage = "https://github.com/mikedilger/gossip"
default-run = "gossip"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-recursion = "1.0"
base64 = "0.21"
dashmap = "5.4"
dirs = "4.0"
eframe = { version = "0.21", features = [ "dark-light", "persistence" ] }
egui_extras = { version = "0.21", features = [ "image", "svg", "tracing" ] }
futures = "0.3"
futures-util = "0.3"
hex = "0.4"
http = "0.2"
image = { version = "0.24", features = [ "png", "jpeg" ] }
lazy_static = "1.4"
linkify = "0.9"
memoize = "0.4"
nostr-types = { git = "https://github.com/mikedilger/nostr-types" }
parking_lot = "0.12"
qrcode = { git = "https://github.com/mikedilger/qrcode-rust" }
rand = "0.8"
regex = "1.7"
reqwest = { version = "0.11", features = ["brotli", "deflate", "gzip", "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"
time = { version = "0.3", features = [ "formatting" ] }
tokio = { version = "1", features = ["full"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = [ "std", "env-filter" ] }
tokio-tungstenite = { version = "0.18", features = [ "native-tls" ] }
tungstenite = { version = "0.18", features = [ "native-tls" ] }
zeroize = "1.5"
# Force scrypt to build with release-like speed even in dev mode
[profile.dev.package.scrypt]
opt-level = 3
debug-assertions = false
overflow-checks = false
[package.metadata.deb]
section = "web"
assets = [
["target/release/gossip", "/usr/bin/", "755"],
["contrib/gossip.desktop", "/usr/share/applications/gossip.desktop", "644"],
]