[workspace] members = [ "tests/single-panic", "tests/custom-panic", ] resolver = "2" [workspace.package] license = "MIT OR Apache-2.0" edition = "2021" rust-version = "1.65.0" # MSRV include = [ "build.rs", "src/**/*", "Cargo.toml", "Cargo.lock", "LICENSE*", "README.md", "benches/**/*", "examples/**/*" ] [package] name = "not-so-human-panic" version = "1.1.5" description = "Panic messages for humans" repository = "https://github.com/onkoe/not-so-human-panic" homepage = "https://github.com/onkoe/not-so-human-panic" categories = ["command-line-interface"] keywords = ["cli", "panic"] license.workspace = true edition.workspace = true rust-version.workspace = true include.workspace = true [package.metadata.docs.rs] all-features = true rustdoc-args = ["--cfg", "docsrs"] [package.metadata.release] pre-release-replacements = [ {file="CHANGELOG.md", search="Unreleased", replace="{{version}}", min=1}, {file="CHANGELOG.md", search="\\.\\.\\.HEAD", replace="...{{tag_name}}", exactly=1}, {file="CHANGELOG.md", search="ReleaseDate", replace="{{date}}", min=1}, {file="CHANGELOG.md", search="", replace="\n## [Unreleased] - ReleaseDate\n", exactly=1}, {file="CHANGELOG.md", search="", replace="\n[Unreleased]: https://github.com/onkoe/not-so-human-panic/compare/{{tag_name}}...HEAD", exactly=1}, ] [features] default = ["color"] nightly = [] color = ["dep:anstyle", "dep:anstream"] [dependencies] anstyle = { version = "1.0.0", optional = true } anstream = { version = "0.3.0", optional = true } uuid = { version = "1.3.0", features = ["v4"], default-features = false } serde_derive = "1.0.152" toml = "0.7.2" serde = "1.0.152" os_info = "3.6.0" backtrace = "0.3.67"