rustio-admin-cli 0.31.0

Command-line tools for rustio-admin: project scaffolding, migrations, user management.
[package]
name = "{{name}}"
version = "0.1.0"
edition = "2021"

[dependencies]
# Your model files depend on `rustio-admin` ALONE. Field types
# (`Decimal`, `DateTime`, `Uuid`, …) and everything the `RustioAdmin`
# derive generates resolve through the framework's re-exports, so
# `chrono` / `uuid` / `rust_decimal` / `sqlx` are NOT declared here —
# the framework owns those versions, which keeps the whole tree on one
# resolved copy. Add any back only if your own (non-model) code needs
# them directly. What remains is this binary's runtime: async, .env,
# logging.
rustio-admin = "0.31.0"
tokio        = { version = "1", features = ["macros", "rt-multi-thread"] }
dotenvy      = "0.15"
env_logger   = "0.11"
log          = "0.4"