[package] name = "cowstr" version = "1.3.0" edition = "2021" authors = ["Christian Thäter "] description = "Copy-on-Write shared strings" license = "MIT OR Apache-2.0" repository = "https://git.pipapo.org/cehteh/cowstr.git" keywords = ["string", "cow"] categories = ["rust-patterns"] rust-version = "1.70.0" [features] default = [] serde = ["dep:serde", "dep:serde_test"] # enable to use nightly features nightly = ["nightly_int_roundings", "nightly_extend_one", "nightly_fmt_internals"] # unstable features from nightly nightly_int_roundings = [] nightly_extend_one = [] nightly_fmt_internals = [] # PLANNED: used by the std String testsuite, will become probed in future #nightly_assert_matches = [] #nightly_string_remove_matches = [] [dependencies] code-product = "0.3.0" constptr = "0.2.0" mutants = "0.0.3" serde = { version = "1", optional = true } serde_test = { version = "1", optional = true } [badges] maintenance = { status = "actively-developed" } [lints.rust] missing_docs = "warn" [lints.clippy] pedantic = "warn" cargo_common_metadata = "warn" doc_markdown = "warn" missing_panics_doc = "warn" must_use_candidate = "warn" missing_const_for_fn = "warn" semicolon_if_nothing_returned = "warn" [lints.rustdoc] missing_crate_level_docs = "warn"