warpgate/warpgate-db-entities/Cargo.toml
2024-09-18 11:28:39 +02:00

20 lines
551 B
TOML

[package]
edition = "2021"
license = "Apache-2.0"
name = "warpgate-db-entities"
version = "0.10.2"
[dependencies]
chrono = { version = "0.4", default-features = false, features = ["serde"] }
poem-openapi = { version = "5.1", features = ["chrono", "uuid"] }
sea-orm = { version = "0.12", features = [
"macros",
"with-chrono",
"with-uuid",
"with-json",
], default-features = false }
serde = "1.0"
serde_json = "1.0"
uuid = { version = "1.3", features = ["v4", "serde"] }
warpgate-common = { version = "*", path = "../warpgate-common" }