forked from lukaslueg/built
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (24 loc) · 785 Bytes
/
Cargo.toml
File metadata and controls
29 lines (24 loc) · 785 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[package]
name = "built"
version = "0.4.4"
description = "Provides a crate with information from the time it was built."
repository = "https://github.com/lukaslueg/built"
documentation = "https://docs.rs/built"
authors = ["Lukas Lueg <lukas.lueg@gmail.com>"]
license = "MIT"
readme = "README.md"
keywords = ["cargo", "build"]
edition = "2018"
[badges]
travis-ci = { repository = "lukaslueg/built" }
[features]
nightly = []
[dependencies]
cargo-lock = { version = "6.0", default-features = false }
semver = { version = "0.11", optional = true }
chrono = { version = "0.4", optional = true }
git2 = { version = "0.13", optional = true, default-features = false, features = [] }
[dev-dependencies]
tempdir = "0.3"
[package.metadata.docs.rs]
features = [ "chrono", "git2", "semver" ]