gossip/Cargo.toml

59 lines
1.8 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]
2023-01-14 20:35:50 +00:00
async-recursion = "1.0"
base64 = "0.21"
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" ] }
2023-01-16 06:08:40 +00:00
egui_extras = { version = "0.20", features = [ "image", "svg", "tracing" ] }
futures = "0.3"
futures-util = "0.3"
hex = "0.4"
http = "0.2"
2023-01-16 06:08:40 +00:00
image = { version = "0.24", features = [ "png", "jpeg" ] }
lazy_static = "1.4"
2023-01-01 18:22:55 +00:00
linkify = "0.9"
memoize = "0.4"
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"
# 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
2023-01-20 16:14:22 +00:00
[package.metadata.deb]
section = "web"
assets = [
["target/release/gossip", "/usr/bin/", "755"],
["contrib/gossip.desktop", "/usr/share/applications/gossip.desktop", "644"],
]