high_precision_clock 0.1.2

A high-precision clock for cloud servers.
Documentation
[package]
name = "high_precision_clock"
version = "0.1.2"
edition = "2021"
authors = ["Alpha alpha.pku@gmail.com"]
description = "A high-precision clock for cloud servers."
homepage = "https://github.com/alphapku/high_precision_clock"
repository = "https://github.com/alphapku/high_precision_clock"
documentation = "https://docs.rs/high_precision_lock"
license = "MIT"
keywords = ["clock", "high-precision", "cloud"]
categories = ["asynchronous", "date-and-time", "finance"]

[dependencies]
# Required dependencies
log = "0.4"
chrono = "0.4"

# Optional dependencies, enabled only when specific features are turned on
tokio = { version = "1", optional = true }

[features]
# The "async" feature enables async support using Tokio
async = ["tokio"]

# The "tsc" feature enables the TSC timing mechanism on x86_64 Linux
tsc = []

default = []