mirror of
https://github.com/bitwarden/server
synced 2026-02-14 15:33:35 +00:00
26 lines
704 B
TOML
26 lines
704 B
TOML
[package]
|
|
name = "ms_database"
|
|
edition.workspace = true
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
license-file.workspace = true
|
|
keywords.workspace = true
|
|
|
|
[dependencies]
|
|
async-trait = {workspace = true }
|
|
bb8 = "0.9.0"
|
|
macros = { path = "../macros" }
|
|
thiserror = "2.0.17"
|
|
tokio = {workspace = true}
|
|
tokio-util = {version = "0.7.16", features = ["compat"] }
|
|
tracing = { workspace = true }
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
tiberius = { version = "0.12.3", default-features = false, features = ["chrono", "tokio", "rustls"] }
|
|
|
|
[target.'cfg(not(target_os = "macos"))'.workspace.dependencies]
|
|
tiberius = { version = "0.12.3", features = ["chrono", "tokio"] }
|
|
|
|
[lints]
|
|
workspace = true
|