Files
phoenix 8b49b63d59
Release Tagging / release (push) Successful in 1m25s
Rust Build / Check (push) Successful in 1m24s
Rust Build / Test Suite (push) Successful in 1m26s
Rust Build / Rustfmt (push) Successful in 53s
Rust Build / build (push) Successful in 1m13s
Rust Build / Clippy (push) Successful in 3m37s
Adding license (#36)
Reviewed-on: #36
2026-07-14 11:15:19 -04:00

31 lines
868 B
TOML

[package]
name = "schedtxt_models"
version = "0.5.3"
edition = "2024"
rust-version = "1.97"
license = "MIT"
description = "Models used for the schedtxt project"
[dependencies]
serde = { version = "1.0.228", features = ["derive"] }
serde_json = { version = "1.0.150" }
time = { version = "0.3.53", features = ["formatting", "macros", "parsing", "serde"] }
sqlx = { version = "0.9.0", features = ["runtime-tokio", "tls-native-tls", "postgres", "time", "uuid"] }
uuid = { version = "1.23.5", features = ["v4", "serde"] }
dotenvy = { version = "0.15.7" }
const_format = { version = "0.2.36" }
josekit = { version = "0.10.3" }
utoipa = { version = "5.5.0", features = ["uuid", "time"] }
[features]
default = ["full"]
full = ["user", "message", "contact", "config", "envy", "token"]
user = []
message = []
contact = []
config = []
envy = []
token = []
[dev-dependencies]