[package] name = "proplate" description = "Proplate is a CLI tool that allows you to quickly create and set up project structures based on templates, and also create your own templates for your future projects." version = "0.5.1" authors = ["Yume Saiko "] edition = "2021" categories = ["command-line-utilities"] keywords = ["productivity", "template", "generate", "create"] license = "MIT" readme = "../../README.md" repository = "https://github.com/YumeT023/proplate" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] clap = "4.4.10" inquire = "0.6.2" proplate-core = { version = "0.5.1", path = "../core" } proplate-errors = { version = "0.4.0", path = "../errors" } proplate-integration = { version = "0.3.1", path = "../integration" } proplate-tui = { version = "0.3.1", path = "../tui" } [dependencies.uuid] version = "1.6.1" features = [ "v4", # Lets you generate random UUIDs "fast-rng", # Use a faster (but still sufficiently random) RNG "macro-diagnostics", # Enable better diagnostics for compile-time UUIDs ] [dev-dependencies] assert_cmd = "2.0.12"