[package]
edition = "2021"
name = "doido-model"
version = "0.0.5"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SeaORM re-exports plus connection pooling and model testing helpers for Doido apps."
readme = false
license = "MIT"
[lib]
name = "doido_model"
path = "src/lib.rs"
[[test]]
name = "migration_test"
path = "tests/migration_test.rs"
[[test]]
name = "model_test"
path = "tests/model_test.rs"
[[test]]
name = "testing_test"
path = "tests/testing_test.rs"
[dependencies.doido-core]
version = "0.0.5"
[dependencies.sea-orm]
version = "2.0.0-rc.38"
features = [
"sqlx-sqlite",
"runtime-tokio-rustls",
"macros",
]
[dependencies.sea-orm-migration]
version = "2.0.0-rc.38"
features = [
"sqlx-sqlite",
"runtime-tokio-rustls",
]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_norway]
version = "0.9"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
]
[dependencies.url]
version = "2"
[dev-dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
]