warpgate/warpgate-db-entities/Cargo.toml

20 lines
553 B
TOML
Raw Normal View History

2022-04-11 04:58:58 +08:00
[package]
edition = "2021"
license = "Apache-2.0"
2022-04-11 04:58:58 +08:00
name = "warpgate-db-entities"
2024-07-27 00:18:39 +08:00
version = "0.10.1"
2022-04-11 04:58:58 +08:00
[dependencies]
2024-07-16 16:40:20 +08:00
chrono = { version = "0.4", default-features = false, features = ["serde"] }
poem-openapi = { version = "2.0", features = ["chrono", "uuid"] }
sea-orm = { version = "0.12.2", features = [
"macros",
"with-chrono",
"with-uuid",
"with-json",
], default-features = false }
serde = "1.0"
serde_json = "1.0"
uuid = { version = "1.2", features = ["v4", "serde"] }
2022-09-02 20:00:08 +08:00
warpgate-common = { version = "*", path = "../warpgate-common" }