diff --git a/Cargo.toml b/Cargo.toml index 11ea438..85c1495 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,9 +12,16 @@ homepage = "https://github.com/EmbarkStudios/spdx" documentation = "https://docs.rs/spdx" readme = "README.md" keywords = ["spdx", "license"] +categories = ["parser-implementations"] license = "MIT OR Apache-2.0" repository = "https://github.com/EmbarkStudios/spdx" -include = ["Cargo.toml", "LICENSE-APACHE", "LICENSE-MIT", "src/**/*"] +include = [ + "Cargo.toml", + "LICENSE-APACHE", + "LICENSE-MIT", + "README.md", + "src/**/*", +] [features] # Includes the full canonical text of each license diff --git a/release.toml b/release.toml index af09ab5..dc4c07d 100644 --- a/release.toml +++ b/release.toml @@ -1,5 +1,4 @@ pre-release-commit-message = "Release {{version}}" -no-dev-version = true tag-message = "Release {{version}}" tag-name = "{{version}}" pre-release-replacements = [ @@ -8,4 +7,4 @@ pre-release-replacements = [ { file = "CHANGELOG.md", search = "ReleaseDate", replace = "{{date}}" }, { file = "CHANGELOG.md", search = "", replace = "\n## [Unreleased] - ReleaseDate" }, { file = "CHANGELOG.md", search = "", replace = "\n[Unreleased]: https://github.com/EmbarkStudios/spdx/compare/{{tag_name}}...HEAD" }, -] \ No newline at end of file +] diff --git a/src/lib.rs b/src/lib.rs index c0ca8bd..dcda3cc 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -79,7 +79,6 @@ )] // END - Embark standard lints v0.5 for Rust 1.55+ // crate-specific exceptions: -#![allow()] /// Error types pub mod error;