[dependencies.component_model_types]
default-features = false
features = ["enabled"]
version = "~0.5.0"
[dependencies.lexical]
optional = true
version = "7.0.4"
[dev-dependencies.test_tools]
features = ["full"]
version = "~0.16.0"
[[example]]
name = "strs_tools_trivial"
path = "examples/strs_tools_trivial.rs"
[features]
default = ["enabled", "string_indentation", "string_isolate", "string_parse_request", "string_parse_number", "string_split"]
enabled = []
full = ["enabled", "use_alloc", "string_indentation", "string_isolate", "string_parse_request", "string_parse_number", "string_split"]
no_std = []
string_indentation = ["enabled"]
string_isolate = ["enabled"]
string_parse = []
string_parse_number = ["lexical", "enabled"]
string_parse_request = ["string_split", "string_isolate", "enabled"]
string_split = ["enabled"]
use_alloc = ["no_std"]
[lib]
name = "strs_tools"
path = "src/lib.rs"
[lints.clippy]
absolute_paths = "allow"
inline_always = "allow"
module_name_repetitions = "allow"
single_call_fn = "allow"
std_instead_of_alloc = "allow"
std_instead_of_core = "warn"
undocumented_unsafe_blocks = "deny"
wildcard_imports = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.clippy.restriction]
level = "allow"
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
[package]
authors = ["Kostiantyn Wandalen <wandalen@obox.systems>", "Dmytro Kryvoruchko <dmytro.kr@obox.systems>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["algorithms", "development-tools"]
description = """
Tools to manipulate strings.
"""
documentation = "https://docs.rs/strs_tools"
edition = "2021"
homepage = "https://github.com/Wandalen/wTools/tree/master/module/core/strs_tools"
keywords = ["fundamental", "general-purpose"]
license = "MIT"
name = "strs_tools"
readme = "readme.md"
repository = "https://github.com/Wandalen/wTools/tree/master/module/core/strs_tools"
version = "0.23.0"
[package.metadata.docs.rs]
all-features = false
features = ["full"]
[[test]]
name = "debug_hang_split_issue"
path = "tests/debug_hang_split_issue.rs"
[[test]]
name = "debug_split_issue"
path = "tests/debug_split_issue.rs"
[[test]]
name = "smoke_test"
path = "tests/smoke_test.rs"
[[test]]
name = "strs_tools_tests"
path = "tests/strs_tools_tests.rs"