-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
35 lines (33 loc) · 968 Bytes
/
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
[package]
name = "keystr-rs"
version = "0.7.1"
edition = "2021"
description = "An application for managing Nostr keys. Written in Rust, with simple UI (Iced)."
homepage = "https://github.com/keystr/keystr-rs"
repository = "https://github.com/keystr/keystr-rs.git"
# TODO add verified email authors = ["catenocrypt <[email protected]>"]
license = "MIT"
readme = "README.md"
rust-version = "1.67.0"
keywords = ["nostr", "nip-26",]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bip32 = "0.5.0"
bip39 = "2.0.0"
chacha20poly1305 = "0.10.1"
crossbeam = "0.8.2"
dirs = "4.0.0"
hex = "0.4.3"
iced = { version = "0.8.0", features = ["tokio", "qr_code"]}
iced_native = "0.9.1"
nostr = "0.21.0"
nostr-sdk = "0.21.0"
once_cell = "1.17.1"
rand_core = "0.6"
readonly = "0.2.3"
scrypt = "0.10.0"
serde = "1.0.152"
serde_json = "1.0.93"
thiserror = "1.0"
tokio = "1.26.0"
zeroize = "1.5"