robotech 0.9.3

Backend service implementation for the RoboTech platform, providing RESTful APIs and business logic for web applications.
Documentation
[package]
name = "robotech"
version = "0.9.3"
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"]
base = ["api", "dep:log", "dep:tracing-log", "dep:tracing-core", "dep:tracing-subscriber", "dep:tracing-appender", "dep:config"]
web = ["base", "dep:actix-web"]
crud = ["base", "dep:sea-orm", "dep:thiserror", "dep:regex", "dep:once_cell", "dep:validator", "dep:wheel-rs"]

[dependencies]
log = { version = "0.4.28", optional = true }
tracing-log = { version = "0.2.0", optional = true }
tracing-core = { version = "0.1.34", optional = true }
tracing-subscriber = { version = "0.3.20", features = ["env-filter", "json", "chrono", "tracing-log"], optional = true }
tracing-appender = { version = "0.2.3", optional = true }
config = { version = "0.15.18", optional = true }
chrono = { version = "0.4.42", optional = true }
regex = { version = "1.12.2", optional = true }
serde = { version = "1.0.228", optional = true }
actix-web = { version = "4.11.0", optional = true }
sea-orm = { version = "1.1.17", optional = true }
thiserror = { version = "2.0.17", optional = true }
once_cell = { version = "1.21.3", optional = true }
validator = { version = "0.20.0", optional = true }
utoipa = { version = "5.4.0", optional = true }
wheel-rs = { version = "0.2.4", optional = true }