git-tags-semver 0.6.2

Tool to extract SemVer Version Information from annotated git tags
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 = "2024"
rust-version = "1.87"
name = "git-tags-semver"
version = "0.6.2"
authors = ["Fraunhofer IML Embedded Rust Group <embedded-rust@iml.fraunhofer.de>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Tool to extract SemVer Version Information from annotated git tags"
readme = "README.md"
keywords = [
    "no_std",
    "git",
    "semver",
]
categories = [
    "embedded",
    "no-std",
    "development-tools::build-utils",
    "development-tools::debugging",
]
license = "OLFL-1.3"
repository = "https://git.openlogisticsfoundation.org/silicon-economy/libraries/serum/git-tags-semver"

[features]
default = ["std"]
executable = ["dep:clap"]
std = [
    "serde/std",
    "dep:regex",
]

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

[[bin]]
name = "git-tags-semver"
path = "src/main.rs"
required-features = ["executable"]

[[example]]
name = "build"
path = "examples/build.rs"
required-features = ["std"]

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

[dependencies.clap]
version = "4.5"
features = ["derive"]
optional = true

[dependencies.heapless]
version = "0.9.2"
features = ["serde"]
default-features = false

[dependencies.regex]
version = "1.5"
optional = true

[dependencies.serde]
version = "1.0.219"
features = ["derive"]
default-features = false