-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
46 lines (42 loc) · 1.07 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
[package]
name = "osmium-pwm"
version = "0.1.5"
authors = ["Matthias Debernardini <[email protected]>"]
description = "a password manager that uses BIP-85"
readme = "README.md"
license = "MIT"
edition = "2021"
repository = "https://github.com/matthiasdebernardini/osmium"
[dependencies]
bitcoin = "0.29.2"
bip39 = { version = "1.0.1", features = ["rand", "std"]}
chrono = "0.4.19"
clap = { version = "4.0.32", features = ["derive"] }
log = "0.4.0"
fern = "0.6.1"
config = { version = "0.13.1", features = ["toml"] }
rand = "0.8.5"
rand_core = "0.6.3"
anyhow = "1.0.68"
thiserror = "1.0.38"
xdg = "2.4.1"
nostr = "0.11.0"
age = { version = "0.9.0", features = ["armor"] }
rpassword = "7.2.0"
zeroize = "1.5.7"
reqwest = { version = "0.11.13", features = ["blocking"] }
hex = { version = "0.4.3", features = ["serde"]}
serde = "1.0.152"
serde_bytes = "0.11"
carbonado = "0.2.5"
secp256k1 = { version = "0.25.0", features = [
"global-context",
"rand-std",
"bitcoin-hashes-std",
"serde",
] }
itertools = "0.10.5"
[profile.dev]
opt-level = 0
[profile.release]
opt-level = 3