-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathCargo.toml
27 lines (23 loc) · 885 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
27
[package]
name = "built"
version = "0.7.7"
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 <[email protected]>"]
license = "MIT"
readme = "README.md"
keywords = ["cargo", "build"]
edition = "2021"
rust-version = "1.74"
[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.20", 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" ]