[package]
name = "lenso-cli"
version = "0.2.19"
edition = "2024"
license = "MIT"
description = "Lenso command-line interface for scaffolding and operating Lenso backend projects."
repository = "https://github.com/LioRael/lenso-cli"
homepage = "https://github.com/LioRael/lenso-cli"
rust-version = "1.94"
categories = ["command-line-utilities", "development-tools"]
keywords = ["cli", "scaffold", "backend", "framework"]
include = [
"src/**/*.rs",
"templates/**",
"README.md",
"Cargo.toml",
]
[[bin]]
name = "lenso"
path = "src/main.rs"
[dependencies]
anyhow = "1.0"
axum = "0.8"
clap = { version = "4", features = ["derive"] }
getrandom = "0.4"
include_dir = "0.7"
lenso-service = "0.1.4"
lenso-contracts = "0.4.0"
lenso-module-management = "0.2.0"
reqwest = { version = "0.13", default-features = false, features = ["json", "query", "rustls"] }
rpassword = "7"
schemars = "1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_json_canonicalizer = "0.3.2"
sha2 = "0.11"
sqlx = { version = "0.9", default-features = false, features = ["runtime-tokio", "tls-rustls-ring-webpki", "postgres", "json", "uuid"] }
thiserror = "2"
tokio = { version = "1.52", features = ["fs", "io-util", "macros", "net", "process", "rt-multi-thread", "signal", "sync", "time"] }
uuid = { version = "1", features = ["v7"] }
[target.'cfg(unix)'.dependencies]
nix = { version = "0.30", features = ["signal"] }
[lints.rust]
unsafe_code = "forbid"
missing_debug_implementations = "warn"
[lints.clippy]
all = "warn"
pedantic = "warn"
module_name_repetitions = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
must_use_candidate = "allow"