-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
45 lines (43 loc) · 1.23 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 = "passchain"
version = "0.1.0"
edition = "2021"
description = "Multi-factor authentication for LUKS"
authors = ["sbchild <[email protected]>"]
repository = "https://github.com/sb-child/passchain"
license = "MPL-2.0"
[dependencies]
clap = { version = "4.5.15", features = ["derive"] }
serde = { version = "*", features = ["derive"] }
notify = { version = "*", features = ["serde"] }
toml = { version = "*" }
thiserror = { version = "*" }
anyhow = { version = "*", features = ["backtrace"] }
tokio = { version = "*", features = ["full"] }
inquire = { version = "0.7.5", features = ["date"] }
strum = { version = "0.26", features = ["derive"] }
ctap-hid-fido2 = { git = "https://github.com/sb-child/ctap-hid-fido2", branch = "master" }
tracing = "0.1"
tracing-subscriber = "0.3"
ring = "*"
indicatif = "0.17.8"
base64 = "*"
entropy = "0.4.2"
futures = "*"
tracing-indicatif = "0.3.6"
ratatui = "0.28.1"
argonautica = { git = "https://github.com/sb-child/argonautica", branch = "patch-static", features = [
"simd",
"build_dynamic",
], default-features = false }
convert-base = "1.1.2"
blake3 = "1.5.4"
sha2 = "0.10.8"
sha3 = "0.10.8"
[profile.release]
opt-level = 3
debug = false
lto = true
panic = "abort"
codegen-units = 1
strip = true