gossip/Cargo.toml

74 lines
2.7 KiB
TOML
Raw Normal View History

2022-12-20 04:40:16 +00:00
[package]
name = "gossip"
version = "0.4.90-unstable"
2022-12-20 05:30:56 +00:00
description = "A social media client for nostr"
2023-03-01 03:32:36 +00:00
authors = ["Mike Dilger <mike@mikedilger.com>", "fiatjaf <fiatjaf@gmail.com>", "Nate Levin <natelevincycling@gmail.com>", "Nethanja Focking <nethanja@nethanja.de>", "Daniele Tonon <tonon@vitamino.it>", "jeremyd (@jeremyd)"]
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
[features]
2023-03-04 08:05:57 +00:00
default = ["rustls-tls"]
lang-cjk = []
2022-12-20 04:40:16 +00:00
2023-03-04 08:05:57 +00:00
native-tls = [ "reqwest/native-tls", "tungstenite/native-tls", "tokio-tungstenite/native-tls"]
rustls-tls = [ "reqwest/rustls-tls", "tungstenite/rustls-tls-webpki-roots", "tokio-tungstenite/rustls-tls-webpki-roots"]
2022-12-20 04:40:16 +00:00
[dependencies]
2023-01-14 20:35:50 +00:00
async-recursion = "1.0"
async-trait = "0.1"
base64 = "0.21"
2023-01-06 18:55:17 +00:00
dashmap = "5.4"
dirs = "4.0"
2023-02-17 02:10:15 +00:00
eframe = { git = "https://github.com/mikedilger/egui", branch="gossip", features = [ "dark-light", "persistence" ] }
2023-02-27 20:53:08 +00:00
egui-winit = { git = "https://github.com/mikedilger/egui", branch="gossip", features = [ "default" ] }
2023-02-17 02:10:15 +00:00
egui_extras = { git = "https://github.com/mikedilger/egui", branch="gossip", features = [ "image", "svg", "tracing" ] }
encoding_rs = "0.8"
2023-03-08 05:47:01 +00:00
fallible-iterator = "0.2"
futures = "0.3"
futures-util = "0.3"
gossip-relay-picker = { git = "https://github.com/mikedilger/gossip-relay-picker" }
hex = "0.4"
http = "0.2"
humansize = "2.1"
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"
mime = "0.3"
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"
2023-01-27 05:49:33 +00:00
qrcode = { git = "https://github.com/mikedilger/qrcode-rust" }
2023-03-06 09:02:50 +00:00
r2d2 = "*"
r2d2_sqlite = "*"
rand = "0.8"
regex = "1.7"
2023-03-04 08:05:57 +00:00
reqwest = { version = "0.11", default-features=false, 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"
thiserror = "1.0"
time = { version = "0.3", features = [ "formatting" ] }
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" ] }
2023-03-04 08:05:57 +00:00
tokio-tungstenite = { version = "0.18", default-features = false, features = [ "connect", "handshake" ] }
tungstenite = { version = "0.18", default-features = false }
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"],
2023-02-11 00:58:07 +00:00
["packaging/debian/gossip.desktop", "/usr/share/applications/gossip.desktop", "644"],
2023-01-20 16:14:22 +00:00
]