begin-rs-web 0.1.2

A CLI tool for bootstrapping production-ready Rust web applications with Axum, authentication, and database support
Documentation
[[bin]]
name = "begin-rs-web"
path = "src/main.rs"

[dependencies.anyhow]
version = "1.0"

[dependencies.clap]
features = ["derive"]
version = "4.5"

[dependencies.colored]
version = "2.1"

[dependencies.console]
version = "0.15"

[dependencies.dialoguer]
version = "0.11"

[dependencies.indicatif]
version = "0.17"

[dependencies.serde]
features = ["derive"]
version = "1.0"

[dependencies.serde_json]
version = "1.0"

[dependencies.tokio]
features = ["full"]
version = "1.35"

[dev-dependencies.tempfile]
version = "3.8"

[lib]
name = "begin_rs_web"
path = "src/lib.rs"

[package]
authors = ["Eze Sunday <mailstoeze@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities", "web-programming", "development-tools"]
description = "A CLI tool for bootstrapping production-ready Rust web applications with Axum, authentication, and database support"
documentation = "https://docs.rs/begin-rs-web"
edition = "2021"
homepage = "https://github.com/ezesundayeze/begin-rs-web"
keywords = ["cli", "web", "axum", "template", "generator"]
license = "MIT OR Apache-2.0"
name = "begin-rs-web"
readme = "README.md"
repository = "https://github.com/ezesundayeze/begin-rs-web"
rust-version = "1.75"
version = "0.1.2"

[[test]]
name = "config_tests"
path = "tests/config_tests.rs"

[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"

[[test]]
name = "template_tests"
path = "tests/template_tests.rs"