23 lines
579 B
TOML
23 lines
579 B
TOML
[package]
|
|
name = "semver"
|
|
version = "1.0.6"
|
|
authors = ["David Tolnay <dtolnay@gmail.com>"]
|
|
edition = "2018"
|
|
rust-version = "1.31"
|
|
license = "MIT OR Apache-2.0"
|
|
description = "Parser and evaluator for Cargo's flavor of Semantic Versioning"
|
|
repository = "https://github.com/dtolnay/semver"
|
|
documentation = "https://docs.rs/semver"
|
|
readme = "README.md"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = []
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0", optional = true, default-features = false }
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
rustdoc-args = ["--cfg", "doc_cfg"]
|