mirror of
https://github.com/bitwarden/server
synced 2026-01-28 23:36:12 +00:00
38 lines
1021 B
TOML
38 lines
1021 B
TOML
[workspace]
|
|
members = ["crates/*"]
|
|
resolver = "2"
|
|
|
|
[workspace.package]
|
|
edition = "2021"
|
|
version = "0.1.0"
|
|
authors = ["Bitwarden Inc"]
|
|
license-file = "LICENSE"
|
|
keywords = ["akd", "key transparency"]
|
|
|
|
[workspace.lints.clippy]
|
|
unused_async = "deny"
|
|
unwrap_used = "deny"
|
|
|
|
[workspace.dependencies]
|
|
anyhow = "1.0.100"
|
|
akd = { version = "0.12.0-pre.11", features = [
|
|
"tracing",
|
|
"tracing_instrument",
|
|
] }
|
|
async-trait = "0.1.89"
|
|
akd_storage = { path = "crates/akd_storage" }
|
|
axum = { version = "0.8.8", features = ["macros"] }
|
|
bitwarden-akd-configuration = { path = "crates/bitwarden-akd-configuration" }
|
|
bitwarden-encoding = { path = "crates/bitwarden-encoding" }
|
|
blake3 = "1.8.2"
|
|
chrono = "0.4.42"
|
|
common = { path = "crates/common" }
|
|
config = "0.15.18"
|
|
hex = "0.4.3"
|
|
serde = { version = "1.0.228", features = ["derive"] }
|
|
tokio = { version = "1.47.1", features = ["full"] }
|
|
tracing = { version = "0.1.41" }
|
|
tracing-subscriber = { version = "0.3.19" }
|
|
thiserror = "2.0.17"
|
|
uuid = { version = "1.18.1", features = ["serde"] }
|