41 lines
896 B
TOML
41 lines
896 B
TOML
[workspace]
|
|
# Empty workspace to prevent being included in parent workspace
|
|
|
|
[package]
|
|
name = "rustelo-cli"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["Rustelo Contributors"]
|
|
license = "MIT"
|
|
description = "CLI tool for managing Rustelo template-based projects"
|
|
documentation = "https://docs.rs/rustelo-cli"
|
|
repository = "https://github.com/yourusername/rustelo"
|
|
homepage = "https://jesusperez.pro"
|
|
keywords = [
|
|
"rust",
|
|
"web",
|
|
"leptos",
|
|
"axum",
|
|
"cli",
|
|
]
|
|
categories = [
|
|
"command-line-utilities",
|
|
"web-programming",
|
|
]
|
|
|
|
[dependencies]
|
|
clap = { version = "4.5", features = ["derive"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
toml = "1.0.3"
|
|
anyhow = "1.0"
|
|
tokio = { version = "1", features = ["full"] }
|
|
dialoguer = "0.12"
|
|
console = "0.16"
|
|
indicatif = "0.18"
|
|
walkdir = "2.5"
|
|
handlebars = "6.4"
|
|
serde_json = "1.0"
|
|
|
|
[[bin]]
|
|
name = "rustelo"
|
|
path = "src/main.rs"
|