robotech 0.3.1

Backend service implementation for the RoboTech platform, providing RESTful APIs and business logic for web applications.
Documentation
[package]
name = "robotech"
version = "0.3.1"
edition = "2024"
authors = ["zbz"]
keywords = ["crud", "microservice", "service", "RESTful"]
description = "Backend service implementation for the RoboTech platform, providing RESTful APIs and business logic for web applications."
categories = ["web-programming::http-server"]
license = "MIT"
homepage = "https://github.com/rusthing/robotech-rs"
repository = "https://github.com/rusthing/robotech-rs"
readme = "README.md"

[features]
default = ["api"]
api = ["chrono", "serde", "utoipa"]
svr = ["dep:log", "dep:actix-web", "dep:sea-orm", "dep:thiserror", "dep:regex", "dep:once_cell", "dep:validator"]

[dependencies]
log = { version = "0.4.28", optional = true }
chrono = { version = "0.4.42", optional = true }
serde = { version = "1.0.228", features = ["derive"], optional = true }
actix-web = { version = "4.11.0", optional = true }
sea-orm = { version = "1.1.17", features = ["sqlx-postgres", "runtime-actix-rustls", "debug-print"], optional = true }
thiserror = { version = "2.0.17", optional = true }
regex = { version = "1.12.2", optional = true }
once_cell = { version = "1.21.3", optional = true }
validator = { version = "0.20.0", features = ["derive"], optional = true }
utoipa = { version = "5.4.0", optional = true }