mirror of
https://github.com/watchexec/watchexec.git
synced 2024-11-13 07:41:11 +01:00
40 lines
1,010 B
TOML
40 lines
1,010 B
TOML
[package]
|
|
name = "bosion"
|
|
version = "1.1.0"
|
|
|
|
authors = ["Félix Saparelli <felix@passcod.name>"]
|
|
license = "Apache-2.0 OR MIT"
|
|
description = "Gather build information for verbose versions flags"
|
|
keywords = ["version", "git", "verbose", "long"]
|
|
|
|
documentation = "https://docs.rs/bosion"
|
|
repository = "https://github.com/watchexec/watchexec"
|
|
readme = "README.md"
|
|
|
|
rust-version = "1.64.0"
|
|
edition = "2021"
|
|
|
|
[dependencies.time]
|
|
version = "0.3.30"
|
|
features = ["macros", "formatting"]
|
|
|
|
[dependencies.gix]
|
|
version = "0.62.0"
|
|
optional = true
|
|
default-features = false
|
|
features = ["revision"]
|
|
|
|
[features]
|
|
default = ["git", "reproducible", "std"]
|
|
|
|
### Read from git repo, provide GIT_* vars
|
|
git = ["dep:gix"]
|
|
|
|
### Read from SOURCE_DATE_EPOCH when available
|
|
reproducible = []
|
|
|
|
### Provide a long_version_with() function to add extra info
|
|
###
|
|
### Specifically this is std support for the _using_ crate, not for the bosion crate itself. It's
|
|
### assumed that the bosion crate is always std, as it runs in build.rs.
|
|
std = []
|