semver-diff 0.1.0

Find the release-type difference between two semantic versions (major/minor/patch and their prerelease variants). A faithful Rust port of node-semver's diff.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.81"
name = "semver-diff"
version = "0.1.0"
authors = ["trananhtung"]
build = false
exclude = [
    "/.github",
    "/.gitignore",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Find the release-type difference between two semantic versions (major/minor/patch and their prerelease variants). A faithful Rust port of node-semver's diff."
homepage = "https://github.com/trananhtung/semver-diff"
documentation = "https://docs.rs/semver-diff"
readme = "README.md"
keywords = [
    "semver",
    "version",
    "diff",
    "release",
    "update",
]
categories = [
    "development-tools",
    "parsing",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/trananhtung/semver-diff"

[lib]
name = "semver_diff"
path = "src/lib.rs"

[[test]]
name = "integration"
path = "tests/integration.rs"

[dependencies.semver]
version = "1"

[lints.clippy]
all = "warn"
pedantic = "warn"

[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"