-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
55 lines (51 loc) · 1.49 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[package]
name = "keystache"
version = "0.1.0-beta-dev"
description = "A Nostr key management app for desktop"
authors = ["The Node-Tec Team"]
edition = "2021"
[package.metadata.bundle]
name = "Keystache"
identifier = "co.nodetec.keystache"
icon = ["assets/app_icons/**/*.png"]
resources = ["assets/fonts/**/*.*"]
[dependencies]
anyhow = "1.0.89"
arboard = { version = "3.4.1", default-features = false }
async-stream = "0.3.5"
async-trait = "0.1.82"
chrono = { version = "0.4.38", features = ["alloc"] }
diesel = { version = "2.2.4", features = ["sqlite", "chrono"] }
diesel_migrations = { version = "2.2.0", features = ["sqlite"] }
directories = "5.0.1"
fedimint-api-client = "0.4.2"
fedimint-bip39 = "0.4.2"
fedimint-client = "0.4.2"
fedimint-core = "0.4.2"
fedimint-ln-client = "0.4.2"
fedimint-ln-common = "0.4.2"
fedimint-mint-client = "0.4.2"
fedimint-rocksdb = "0.4.2"
iced = { version = "0.13.1", features = [
"advanced",
"qr_code",
"svg",
"tokio",
] }
libsqlite3-sys = { version = "0.30.1", features = ["bundled-sqlcipher"] }
lightning-invoice = "0.31.0"
nip-55 = "0.7.0"
nostr-relay-pool = "0.35.0"
nostr-sdk = "0.35.0"
palette = "0.7.6"
secp256k1 = { version = "0.29.1", features = ["global-context"] }
tokio = "1.40.0"
tokio-stream = "0.1.16"
tracing-subscriber = "0.3.18"
[dev-dependencies]
tempfile = "3.12.0"
# Optimization of these deps significantly speeds
# up communication with fedimint federations.
[profile.dev.package]
bls12_381 = { opt-level = 3 }
secp256k1-sys = { opt-level = 3 }