[package]
edition = "2021"
name = "process_tools"
version = "0.28.0"
authors = ["Kostiantyn Wandalen <wandalen@obox.systems>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
Collection of algorithms and structures to handle processes properly.
"""
homepage = "https://github.com/Wandalen/wTools/tree/master/module/core/process_tools"
documentation = "https://docs.rs/process_tools"
readme = "readme.md"
keywords = [
"fundamental",
"general-purpose",
]
categories = [
"algorithms",
"development-tools",
]
license = "MIT"
repository = "https://github.com/Wandalen/wTools/tree/master/module/core/process_tools"
[package.metadata.docs.rs]
features = ["full"]
all-features = false
[features]
default = [
"enabled",
"process_environment_is_cicd",
]
enabled = [
"mod_interface/enabled",
"former/enabled",
"pth/enabled",
"error_tools/enabled",
"iter_tools/enabled",
]
full = ["enabled"]
process_environment_is_cicd = []
[lib]
name = "process_tools"
path = "src/lib.rs"
[[test]]
name = "manual_edge_cases_test"
path = "tests/manual_edge_cases_test.rs"
[[test]]
name = "manual_execution_test"
path = "tests/manual_execution_test.rs"
[[test]]
name = "smoke_test"
path = "tests/smoke_test.rs"
[[test]]
name = "tests"
path = "tests/tests.rs"
[dependencies.duct]
version = "0.13.7"
[dependencies.error_tools]
version = "~0.37.0"
features = ["error_untyped"]
default-features = false
[dependencies.former]
version = "~2.41.0"
features = ["derive_former"]
default-features = false
[dependencies.iter_tools]
version = "~0.44.0"
default-features = false
[dependencies.mod_interface]
version = "~0.56.0"
default-features = false
[dependencies.pth]
version = "~0.32.0"
default-features = false
[dev-dependencies.assert_fs]
version = "1.1.1"
[dev-dependencies.test_tools]
version = "~0.16.0"
features = ["full"]
[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"))']