1 | [package] |
2 | name = "semver" |
3 | version = "1.0.22" |
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 | [lib] |
22 | doc-scrape-examples = false |
23 | |
24 | [package.metadata.docs.rs] |
25 | targets = ["x86_64-unknown-linux-gnu" ] |
26 | rustdoc-args = ["--cfg" , "doc_cfg" , "--generate-link-to-definition" ] |
27 | |