[package]
edition = "2021"
name = "genfile"
version = "0.4.0"
authors = ["Kostiantyn Mysnyk <wandalen@obox.systems>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
CLI for genfile_core template archive management - create, manage, and materialize code generation templates.
"""
homepage = "https://github.com/Wandalen/wTools/tree/master/module/core/genfile"
documentation = "https://docs.rs/genfile"
readme = "readme.md"
keywords = [
"template",
"codegen",
"cli",
"scaffolding",
"generator",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/Wandalen/wTools/tree/master/module/core/genfile"
[package.metadata.docs.rs]
features = ["full"]
all-features = false
[features]
default = ["enabled"]
enabled = []
full = ["enabled"]
[lib]
name = "genfile"
path = "src/lib.rs"
[[bin]]
name = "genfile"
path = "src/main.rs"
[[test]]
name = "analysis_test"
path = "tests/analysis_test.rs"
[[test]]
name = "archive_commands_test"
path = "tests/archive_commands_test.rs"
[[test]]
name = "content_commands_test"
path = "tests/content_commands_test.rs"
[[test]]
name = "file_commands_test"
path = "tests/file_commands_test.rs"
[[test]]
name = "materialization_test"
path = "tests/materialization_test.rs"
[[test]]
name = "param_value_commands_test"
path = "tests/param_value_commands_test.rs"
[[test]]
name = "repl_exit_code_bug_test"
path = "tests/repl_exit_code_bug_test.rs"
[[test]]
name = "test_utils"
path = "tests/test_utils.rs"
[dependencies.error_tools]
version = "~0.39.0"
features = [
"enabled",
"error_typed",
]
default-features = false
[dependencies.genfile_core]
version = "~0.10.0"
features = ["full"]
default-features = false
[dependencies.mod_interface]
version = "~0.61.0"
features = ["enabled"]
default-features = false
[dependencies.unilang]
version = "~0.51.0"
features = [
"enabled",
"repl",
"enhanced_repl",
"static_registry",
"multi_file",
"approach_yaml_multi_build",
]
[dev-dependencies.assert_cmd]
version = "2.0"
[dev-dependencies.assert_fs]
version = "1.0"
[dev-dependencies.predicates]
version = "3.0"
[dev-dependencies.tempfile]
version = "3.8"
[dev-dependencies.test_tools]
version = "~0.16.0"
features = ["full"]
[build-dependencies.walkdir]
version = "2"
[lints.clippy]
absolute_paths = "allow"
arbitrary_source_item_ordering = "allow"
cast_precision_loss = "allow"
doc_include_without_cfg = "warn"
implicit_return = "allow"
inline_always = "allow"
items_after_statements = "allow"
large_enum_variant = "allow"
missing_docs_in_private_items = "allow"
missing_inline_in_public_items = "allow"
mod_module_files = "allow"
module_name_repetitions = "allow"
pub_use = "allow"
question_mark_used = "allow"
single_call_fn = "allow"
std_instead_of_alloc = "allow"
std_instead_of_core = "warn"
struct_excessive_bools = "allow"
undocumented_unsafe_blocks = "deny"
wildcard_imports = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_debug_implementations = "warn"
missing_docs = "warn"
unsafe-code = "deny"
[lints.rust.future_incompatible]
level = "warn"
priority = -1
[lints.rust.rust_2018_idioms]
level = "warn"
priority = -1
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ['cfg(feature, values("diagnostics_runtime_assertions", "diagnostics_compiletime_assertions", "diagnostics_memory_layout"))']