-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
28 lines (25 loc) · 985 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
[package]
name = "axum_webauthn"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = "0.6.1"
axum-sessions = "0.4.1"
async-sqlx-session = { git = "https://github.com/66OJ66/async-sqlx-session", branch = "main", features = ["pg", "async_std"] }
sqlx = { version = "0.6.2", features = ["postgres", "uuid"] }
webauthn-rs = { version = "0.4.8", features = ["danger-allow-state-serialisation"] }
tokio = { version = "1.0", features = ["full"] }
tower-http = { version = "0.3.5", features = ["fs", "trace", "compression-gzip"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1.0.91"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
thiserror = "1.0.38"
uuid = { version = "1.2.2", features = ["v4"] }
rand = { version = "0.8", features = ["min_const_gen"] }
[profile.release]
lto = true
codegen-units = 1
strip = true
panic = "abort"