| [package] |
| name = "semver" |
| version = "1.0.21" |
| authors = ["David Tolnay <[email protected]>"] |
| categories = ["data-structures", "no-std"] |
| description = "Parser and evaluator for Cargo's flavor of Semantic Versioning" |
| documentation = "https://docs.rs/semver" |
| edition = "2018" |
| keywords = ["cargo"] |
| license = "MIT OR Apache-2.0" |
| repository = "https://github.com/dtolnay/semver" |
| rust-version = "1.31" |
| |
| [features] |
| default = ["std"] |
| std = [] |
| |
| [dependencies] |
| serde = { version = "1.0.194", optional = true, default-features = false } |
| |
| [lib] |
| doc-scrape-examples = false |
| |
| [package.metadata.docs.rs] |
| targets = ["x86_64-unknown-linux-gnu"] |
| rustdoc-args = ["--cfg", "doc_cfg", "--generate-link-to-definition"] |