Philip Jenvey d32c669b7a
Some checks failed
Glean probe-scraper / glean-probe-scraper (push) Has been cancelled
refactor: move syncstorage's Db to async-trait (#1830)
Closes STOR-144
2025-10-03 14:45:18 -07:00

31 lines
958 B
TOML

[package]
name = "syncstorage-db"
version.workspace = true
license.workspace = true
authors.workspace = true
edition.workspace = true
[dependencies]
async-trait.workspace = true
env_logger.workspace = true
lazy_static.workspace = true
rand.workspace = true
slog-scope.workspace = true
log = { version = "0.4", features = [
"max_level_debug",
"release_max_level_info",
] }
syncserver-common = { path = "../syncserver-common" }
syncserver-db-common = { path = "../syncserver-db-common" }
syncserver-settings = { path = "../syncserver-settings" }
syncstorage-db-common = { path = "../syncstorage-db-common" }
syncstorage-mysql = { path = "../syncstorage-mysql", optional = true }
syncstorage-settings = { path = "../syncstorage-settings" }
syncstorage-spanner = { path = "../syncstorage-spanner", optional = true }
tokio = { workspace = true, features = ["macros", "sync"] }
[features]
mysql = ['syncstorage-mysql']
spanner = ['syncstorage-spanner']