1[package] 2name = "semver" 3version = "1.0.21" 4authors = ["David Tolnay <dtolnay@gmail.com>"] 5categories = ["data-structures", "no-std"] 6description = "Parser and evaluator for Cargo's flavor of Semantic Versioning" 7documentation = "https://docs.rs/semver" 8edition = "2018" 9keywords = ["cargo"] 10license = "MIT OR Apache-2.0" 11repository = "https://github.com/dtolnay/semver" 12rust-version = "1.31" 13 14[features] 15default = ["std"] 16std = [] 17 18[dependencies] 19serde = { version = "1.0.194", optional = true, default-features = false } 20 21[lib] 22doc-scrape-examples = false 23 24[package.metadata.docs.rs] 25targets = ["x86_64-unknown-linux-gnu"] 26rustdoc-args = ["--cfg", "doc_cfg", "--generate-link-to-definition"] 27