[package]
edition = "2018"
name = "zeitstempel"
version = "0.2.2"
authors = ["Jan-Erik Rediger <jrediger@mozilla.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A timestamp you can serialize, and it might include suspend time."
readme = "README.md"
license = "MPL-2.0"
repository = "https://github.com/badboy/zeitstempel"
[package.metadata.docs.rs]
targets = [
"x86_64-unknown-linux-gnu",
"aarch64-apple-darwin",
"x86_64-pc-windows-msvc",
]
[features]
win10plus = []
[lib]
name = "zeitstempel"
path = "src/lib.rs"
[[example]]
name = "uptime"
path = "examples/uptime.rs"
[dependencies.cfg-if]
version = "1.0.0"
[dependencies.once_cell]
version = "1.5.2"
[target.'cfg(any(target_os = "linux", target_os = "android", target_os = "macos", target_os = "ios", target_os = "freebsd", target_os = "openbsd"))'.dependencies.libc]
version = "0.2.183"
[target."cfg(windows)".dependencies.winapi]
version = "0.3"
features = [
"profileapi",
"realtimeapiset",
]