rudeshark.net/packages/backend/native-utils/crates/model/Cargo.toml

28 lines
781 B
TOML
Raw Normal View History

2023-05-25 08:34:48 +02:00
[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
2023-06-01 00:12:59 +02:00
[features]
2023-06-01 00:21:57 +02:00
default = ["legacy"]
legacy = ["sea-orm/postgres-array"]
2023-05-25 08:34:48 +02:00
[dependencies]
2023-05-25 14:55:20 +02:00
async-trait = "0.1.68"
2023-06-01 00:12:59 +02:00
cfg-if = "1.0.0"
2023-05-25 08:34:48 +02:00
chrono = "0.4.24"
2023-05-25 14:55:20 +02:00
database = { path = "../database" }
2023-05-31 18:09:30 +02:00
derive_more = "0.99.17"
2023-05-25 08:34:48 +02:00
jsonschema = "0.17.0"
once_cell = "1.17.1"
2023-05-25 14:55:20 +02:00
parse-display = "0.8.0"
2023-05-25 08:34:48 +02:00
schemars = { version = "0.8.12", features = ["chrono"] }
2023-06-01 00:12:59 +02:00
sea-orm = { version = "0.11.3", features = ["sqlx-postgres", "sqlx-sqlite", "runtime-tokio-rustls"] }
2023-05-25 08:34:48 +02:00
serde = { version = "1.0.163", features = ["derive"] }
serde_json = "1.0.96"
2023-05-25 14:55:20 +02:00
thiserror = "1.0.40"
2023-05-25 08:34:48 +02:00
tokio = { version = "1.28.1", features = ["sync"] }
util = { path = "../util" }
2023-05-25 08:34:48 +02:00
utoipa = "3.3.0"