mirror of
https://github.com/mozilla-services/syncstorage-rs.git
synced 2026-01-20 16:01:52 +01:00
23 lines
771 B
TOML
23 lines
771 B
TOML
[package]
|
|
name = "tokenserver-db-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_logger.workspace = true
|
|
diesel_migrations.workspace = true
|
|
http.workspace = true
|
|
tokio = { workspace = true, features = ["macros", "sync"] }
|
|
|
|
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" }
|