18 lines
551 B
TOML
18 lines
551 B
TOML
[package]
|
|
name = "model"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
chrono = "0.4.24"
|
|
jsonschema = "0.17.0"
|
|
once_cell = "1.17.1"
|
|
schemars = { version = "0.8.12", features = ["chrono"] }
|
|
sea-orm = { version = "0.11.3", features = ["postgres-array", "sqlx-postgres", "runtime-tokio-rustls", "mock"] }
|
|
serde = { version = "1.0.163", features = ["derive"] }
|
|
serde_json = "1.0.96"
|
|
tokio = { version = "1.28.1", features = ["sync"] }
|
|
utoipa = "3.3.0"
|