[package]
edition = "2024"
rust-version = "1.95"
name = "djogi-cli"
version = "0.1.0-alpha.11"
authors = ["Tarunvir Bains"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI for the Djogi framework — migrations, shell, db reset, status"
homepage = "https://github.com/TarunvirBains/djogi"
documentation = "https://docs.rs/djogi-cli"
readme = "README.md"
keywords = [
"djogi",
"cli",
"migrate",
"orm",
]
categories = [
"command-line-utilities",
"database",
]
license = "Apache-2.0"
repository = "https://github.com/TarunvirBains/djogi"
resolver = "2"
[lib]
name = "djogi_cli"
path = "src/lib.rs"
[[bin]]
name = "djogi"
path = "src/main.rs"
[[test]]
name = "adopter_linked_cli"
path = "tests/internal/adopter_linked_cli.rs"
harness = true
[[test]]
name = "descriptor_provider"
path = "tests/internal/descriptor_provider.rs"
harness = true
[[test]]
name = "djogi_analyze_recommendations"
path = "tests/internal/djogi_analyze_recommendations.rs"
harness = true
[[test]]
name = "djogi_verify_cli"
path = "tests/internal/djogi_verify_cli.rs"
harness = true
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.deadpool-postgres]
version = "0.14"
[dependencies.djogi]
version = "0.1.0-alpha.9"
[dependencies.djogi-macros]
version = "0.1.0-alpha.9"
[dependencies.inventory]
version = "0.3"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
features = [
"preserve_order",
"arbitrary_precision",
]
[dependencies.thiserror]
version = "2"
[dependencies.time]
version = "0.3"
features = [
"serde",
"formatting",
"parsing",
]
[dependencies.tokio]
version = "1.48"
features = [
"macros",
"rt-multi-thread",
"signal",
]
[dependencies.tokio-postgres]
version = "0.7"
features = [
"runtime",
"with-time-0_3",
"with-serde_json-1",
"with-uuid-1",
"array-impls",
]
default-features = false
[dependencies.tracing]
version = "0.1"
[dev-dependencies.djogi]
version = "0.1.0-alpha.9"
features = ["testing"]