-
Notifications
You must be signed in to change notification settings - Fork 31
/
Cargo.toml
26 lines (22 loc) · 863 Bytes
/
Cargo.toml
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
[package]
name = "built"
version = "0.7.5"
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 = "2021"
[dependencies]
cargo-lock = { version = "10.0", optional = true, default-features = false }
semver = { version = "1.0", optional = true }
chrono = { version = "0.4", optional = true, default-features = false, features = ["clock"] }
git2 = { version = "0.19", optional = true, default-features = false, features = [] }
[dev-dependencies]
tempfile = "3"
[features]
dependency-tree = [ "cargo-lock/dependency-tree" ]
[package.metadata.docs.rs]
features = [ "cargo-lock", "chrono", "dependency-tree", "git2", "semver" ]