| 1 | [package] |
| 2 | name = "built" |
| 3 | version = "0.7.7" |
| 4 | description = "Provides a crate with information from the time it was built." |
| 5 | repository = "https://github.com/lukaslueg/built" |
| 6 | documentation = "https://docs.rs/built" |
| 7 | authors = ["Lukas Lueg <lukas.lueg@gmail.com>" ] |
| 8 | license = "MIT" |
| 9 | readme = "README.md" |
| 10 | keywords = ["cargo" , "build" ] |
| 11 | edition = "2021" |
| 12 | rust-version = "1.74" |
| 13 | |
| 14 | [dependencies] |
| 15 | cargo-lock = { version = "10.0" , optional = true, default-features = false } |
| 16 | semver = { version = "1.0" , optional = true } |
| 17 | chrono = { version = "0.4" , optional = true, default-features = false, features = ["clock" ] } |
| 18 | git2 = { version = "0.20" , optional = true, default-features = false, features = [] } |
| 19 | |
| 20 | [dev-dependencies] |
| 21 | tempfile = "3" |
| 22 | |
| 23 | [features] |
| 24 | dependency-tree = [ "cargo-lock/dependency-tree" ] |
| 25 | |
| 26 | [package.metadata.docs.rs] |
| 27 | features = [ "cargo-lock" , "chrono" , "dependency-tree" , "git2" , "semver" ] |
| 28 | |