[package]
edition = "2024"
name = "ntime"
version = "0.4.0"
authors = ["Lisandro Pin <lisandrop@proton.me>"]
build = false
exclude = [
".github/",
".gitignore",
"assets/",
]
include = [
"Cargo.toml",
"LICENSE",
"src/**/*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "NanoTime is a lightweight, high performance Rust library for nanosecond-precision timestamps."
readme = "README.md"
keywords = [
"duration",
"time",
"timestamp",
]
categories = ["date-and-time"]
license = "MIT"
repository = "https://github.com/plisandro/ntime"
[features]
benchmark = []
[lib]
name = "ntime"
path = "src/lib.rs"
[dependencies]
[lints.rust]
warnings = "deny"