[package]
edition = "2024"
name = "fast-clock"
version = "0.2.0"
authors = ["m-mueller678"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Low-overhead timing without hiding the details from you"
readme = "readme.md"
keywords = [
"timing",
"clock",
"tsc",
"nanosecond-timing",
]
categories = [
"development-tools::profiling",
"hardware-support",
"no-std::no-alloc",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/m-mueller678/fast-clock"
[features]
default = [
"tsc",
"std",
]
std = []
tsc = []
[lib]
name = "fast_clock"
path = "src/lib.rs"
[dependencies]