compile-time-macros 0.3.2

Macros for getting compile time information.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "compile-time-macros"
version = "0.3.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Macros for getting compile time information."
homepage = "https://github.com/reitermarkus/compile-time-rs"
documentation = "https://docs.rs/compile-time-macros"
readme = "ReadMe.md"
keywords = [
    "compilation",
    "proc-macro",
]
categories = [
    "development-tools",
    "date-and-time",
    "no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/reitermarkus/compile-time-rs"

[features]
command = ["dep:macro-string"]
default = [
    "time",
    "version",
    "command",
]
time = [
    "dep:time",
    "dep:once_cell",
]
version = [
    "dep:rustc_version",
    "dep:semver",
    "dep:once_cell",
]

[lib]
name = "compile_time_macros"
path = "src/lib.rs"
proc-macro = true

[dependencies.macro-string]
version = "0.2"
optional = true

[dependencies.once_cell]
version = "1"
optional = true

[dependencies.proc-macro2]
version = "1.0"

[dependencies.quote]
version = "1.0"

[dependencies.rustc_version]
version = "0.4"
optional = true

[dependencies.semver]
version = "1"
optional = true

[dependencies.syn]
version = "2"

[dependencies.time]
version = "0.3.17"
features = [
    "macros",
    "formatting",
    "local-offset",
]
optional = true

[dev-dependencies]