git-tags-semver 0.3.0

Tool to extract SemVer Version Information from annotated git tags
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[package]
name = "git-tags-semver"
description = "Tool to extract SemVer Version Information from annotated git tags"
version = "0.3.0"
authors = [ "Fraunhofer IML Embedded Rust Group <embedded-rust@iml.fraunhofer.de>" ]
edition = "2018"
license = "OLFL-1.3"
repository = "https://git.openlogisticsfoundation.org/silicon-economy/libraries/serum/git-tags-semver"
keywords = ["no_std", "git", "semver"]
categories = ["embedded", "no-std", "development-tools::build-utils", "development-tools::debugging"]
# We need at least 1.51 because that version introduced the new feature resolver `resolver = "2"` which became the default in the 2021 edition
rust-version = "1.51"

[dependencies]
regex = { version = "1.5", optional = true }

[features]
build = [ "regex" ]