# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "cargo-newcpp" version = "0.6.5" authors = ["Sam Beskur "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "A cargo plugin for creating new C++ projects." homepage = "https://github.com/sjbeskur/cargo-newcpp" documentation = "https://github.com/sjbeskur/cargo-newcpp" readme = "README.md" keywords = [ "cargo", "cli", "c++", "cpp", ] categories = [ "development-tools", "development-tools::cargo-plugins", ] license = "Apache-2.0 OR MIT" repository = "https://github.com/sjbeskur/cargo-newcpp" [lib] name = "cargo_newcpp" path = "src/lib.rs" [[bin]] name = "cargo-buildcpp" path = "src/bin/build/main.rs" required-features = ["build"] [[bin]] name = "cargo-cleancpp" path = "src/bin/clean/main.rs" required-features = ["clean"] [[bin]] name = "cargo-gtest" path = "src/bin/gtest/main.rs" required-features = ["gtest"] [[bin]] name = "cargo-newcpp" path = "src/bin/new/main.rs" required-features = ["new"] [dependencies.clap] version = "4.4" features = ["derive"] [dependencies.color-print] version = "0.3.7" [dependencies.handlebars] version = "6.2.0" [features] build = [] clean = [] default = [ "new", "build", "gtest", "clean", ] gtest = [] new = []