mirror of
https://github.com/mozilla-services/syncstorage-rs.git
synced 2026-01-21 00:12:14 +01:00
* feat: support query logging via diesel's instrumentation - upgrades to latest diesel-async/diesel for diesel-async's new migration harness - removes diesel_logger Closes STOR-417
21 lines
677 B
TOML
21 lines
677 B
TOML
[package]
|
|
name = "tokenserver-postgres"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
async-trait.workspace = true
|
|
deadpool.workspace = true
|
|
diesel = { workspace = true, features = ["postgres"] }
|
|
diesel-async = { workspace = true, features = ["postgres"] }
|
|
diesel_migrations.workspace = true
|
|
http.workspace = true
|
|
|
|
syncserver-common = { path = "../syncserver-common" }
|
|
syncserver-db-common = { path = "../syncserver-db-common" }
|
|
tokenserver-common = { path = "../tokenserver-common" }
|
|
tokenserver-db-common = { path = "../tokenserver-db-common" }
|
|
tokenserver-settings = { path = "../tokenserver-settings" }
|