[package]
edition = "2024"
rust-version = "1.85"
name = "umbral-cli"
version = "0.0.6"
authors = ["Dalmas Ogembo <dalmasogembo@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The command-line tool for umbral. Library exposes `dispatch(app)` for user binaries; binary `umbral` is a global scaffolding tool (startproject / startapp)."
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/dalmasonto/umbral"
[lib]
name = "umbral_cli"
path = "src/lib.rs"
[[bin]]
name = "umbral"
path = "src/main.rs"
[[test]]
name = "dispatch_smoke"
path = "tests/dispatch_smoke.rs"
[[test]]
name = "migrate_destructive_gate"
path = "tests/migrate_destructive_gate.rs"
[[test]]
name = "scaffold"
path = "tests/scaffold.rs"
[[test]]
name = "standalone_commands"
path = "tests/standalone_commands.rs"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.csv]
version = "1"
[dependencies.sqlx]
version = "0.8"
features = [
"sqlite",
"runtime-tokio",
]
[dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
]
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dependencies.umbral]
version = "0.0.6"
[dependencies.umbral-casing]
version = "0.0.6"
[dependencies.umbral-core]
version = "0.0.6"
[dev-dependencies.async-trait]
version = "0.1"
[dev-dependencies.tempfile]
version = "3"