-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
33 lines (31 loc) · 1.08 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "nostr-desktop"
version = "0.1.0"
edition = "2021"
description = "Nostr Desktop"
authors = ["Yuki Kishimoto <[email protected]>"]
homepage = "https://github.com/yukibtc/nostr-desktop"
repository = "https://github.com/yukibtc/nostr-desktop.git"
license = "MIT"
keywords = ["nostr", "nostr-sdk", "client", "gui"]
categories = ["gui"]
[dependencies]
async-stream = "0.3.3"
chrono = "0.4.23"
dirs = "4.0.0"
env_logger = "0.8.2"
iced = { version = "0.12.1", default-features = false, features = ["advanced", "image", "tokio"] }
iced_futures = "0.12.0"
log = "0.4.17"
# nostr-sdk = "0.12"
nostr-sdk = { git = "https://github.com/yukibtc/nostr-rs-sdk.git", rev = "7496698c2e040e34b70e804665b8b28aa3a989e7", features = ["sqlite"] }
# nostr-sdk = { path = "../nostr-rs-sdk/crates/nostr-sdk", features = ["sqlite"] }
# notify-rust = "4.6.0"
once_cell = "1"
reqwest = { version = "0.11.13", default-features = false, features = ["json", "rustls-tls-webpki-roots"] }
tokio = { version = "1", features = ["full"] }
[profile.release]
lto = true
codegen-units = 1
strip = "debuginfo"
panic = "abort"