2023-05-25 14:55:20 +02:00
|
|
|
[package]
|
|
|
|
name = "database"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
2023-05-26 03:40:04 +02:00
|
|
|
[features]
|
|
|
|
mock = []
|
|
|
|
|
2023-05-25 14:55:20 +02:00
|
|
|
[dependencies]
|
|
|
|
once_cell = "1.17.1"
|
2023-05-26 03:40:04 +02:00
|
|
|
sea-orm = { version = "0.11.3", features = ["sqlx-postgres", "runtime-tokio-rustls"] }
|
2023-05-25 14:55:20 +02:00
|
|
|
thiserror = "1.0.40"
|
2023-05-26 03:40:04 +02:00
|
|
|
tokio = { version = "1.28.1", features = ["macros"] }
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
sea-orm = { version = "0.11.3", features = ["sqlx-postgres", "sqlx-sqlite", "runtime-tokio-rustls", "mock"] }
|