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