[[bench]]
harness = false
name = "benchmark"
path = "benches/criterion.rs"
[dependencies.anyhow]
version = "1.0.81"
[dependencies.assert_cmd]
version = "2.0.14"
[dependencies.clap]
version = "4.5.4"
[dependencies.configparser]
version = "3.0.4"
[dependencies.csv]
version = "1.3.0"
[dependencies.dtt]
version = "0.0.5"
[dependencies.env_logger]
version = "0.11.3"
[dependencies.figlet-rs]
version = "0.1.5"
[dependencies.log]
features = ["std"]
version = "0.4.21"
[dependencies.regex]
version = "1.10.4"
[dependencies.reqwest]
features = ["blocking"]
version = "0.12.2"
[dependencies.rlg]
version = "0.0.3"
[dependencies.serde]
features = ["derive"]
version = "1.0.197"
[dependencies.serde_ini]
version = "0.2.0"
[dependencies.serde_json]
version = "1.0.115"
[dependencies.serde_yml]
version = "0.0.1"
[dependencies.tempfile]
version = "3.10.1"
[dependencies.toml]
version = "0.8.12"
[dependencies.uuid]
features = ["v4"]
version = "1.8.0"
[dependencies.vrd]
version = "0.0.6"
[dependencies.xtasks]
version = "0.0.2"
[dev-dependencies.criterion]
version = "0.5.1"
[dev-dependencies.predicates]
version = "3.1.0"
[features]
default = []
[lib]
crate-type = ["lib"]
name = "libmake"
path = "src/lib.rs"
required-features = []
[lints.rust]
dead_code = "deny"
deprecated_in_future = "deny"
ellipsis_inclusive_range_patterns = "deny"
explicit_outlives_requirements = "deny"
future_incompatible = "deny"
keyword_idents = "deny"
macro_use_extern_crate = "deny"
meta_variable_misuse = "deny"
missing_debug_implementations = "forbid"
missing_docs = "warn"
missing_fragment_specifier = "deny"
non_ascii_idents = "forbid"
noop_method_call = "deny"
pointer_structural_match = "deny"
rust_2018_idioms = "deny"
rust_2021_compatibility = "deny"
single_use_lifetimes = "deny"
trivial_casts = "deny"
trivial_numeric_casts = "deny"
unreachable_pub = "forbid"
unsafe_code = "forbid"
unused = "deny"
unused_features = "deny"
unused_import_braces = "deny"
unused_labels = "deny"
unused_lifetimes = "deny"
unused_macro_rules = "deny"
unused_qualifications = "deny"
variant_size_differences = "deny"
[package]
authors = ["LibMake Contributors"]
categories = ["development-tools", "command-line-utilities", "template-engine"]
description = "A code generator to reduce repetitive tasks and build high-quality Rust\nlibraries and applications, by providing a simple interface to create\nprojects, generate code, and manage dependencies.\n"
documentation = "https://docs.rs/libmake"
edition = "2021"
exclude = ["/.git/*", "/.github/*", "/.gitignore", "/.vscode/*"]
homepage = "https://libmake.com"
include = ["/CONTRIBUTING.md", "/LICENSE-APACHE", "/LICENSE-MIT", "/benches/**", "/build.rs", "/Cargo.toml", "/examples/**", "/README.md", "/src/**", "/tests/**", "/xtask/**"]
keywords = ["code-generation", "generator", "library", "project-creation", "scaffolding"]
license = "MIT OR Apache-2.0"
name = "libmake"
readme = "README.md"
repository = "https://github.com/sebastienrousseau/libmake.git"
rust-version = "1.75.0"
version = "0.2.4"
[package.metadata.docs.rs]
all-features = true
[profile.bench]
debug = 2
[profile.dev]
codegen-units = 256
debug = 2
debug-assertions = true
incremental = true
lto = false
opt-level = 0
overflow-checks = true
panic = "unwind"
rpath = false
strip = false
[profile.release]
codegen-units = 1
debug = 0
debug-assertions = false
incremental = false
lto = true
opt-level = "s"
overflow-checks = false
panic = "abort"
rpath = false
strip = "symbols"
[profile.test]
codegen-units = 256
debug = 2
debug-assertions = true
incremental = true
lto = false
opt-level = 0
overflow-checks = true
rpath = false
strip = false
[target."cfg(all(unix, not(target_os = \"macos\")))".dependencies.openssl]
features = ["vendored"]
version = "0.10.64"