-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (34 loc) · 961 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 = "webauthn-tiny"
version = "0.2.3"
edition = "2021"
[dependencies]
anyhow = "1"
argon2 = "0.5"
async-trait = "0.1"
axum = "0.8"
axum-macros = "0.5"
base64 = "0.22"
clap = { version = "4", features = ["std", "derive", "env"] }
libsqlite3-sys = "0.30"
liquid = "0.26"
metrics = "0.24"
metrics-exporter-prometheus = "0.16"
rusqlite = "0.32"
serde = "1"
serde_json = "1"
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
tokio-rusqlite = "0.6"
tower-http = { version = "0.6", features = ["trace"] }
tower-sessions = { version = "0.14.0", features = ["private"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
uuid = "1"
webauthn-authenticator-rs = { version = "0.5", features = ["softtoken"] }
webauthn-rs = { version = "0.5", features = [
"danger-allow-state-serialisation",
"danger-credential-internals",
"resident-key-support",
] }
webauthn-rs-core = "0.5"
webauthn-rs-proto = "0.5"