[package] name = "coarsetime-saturated" version = "0.1.21" description = "Time and duration crate optimized for speed, fork of coarsetime" authors = ["Frank Denis ", "Bernhard Schuster "] keywords = ["time", "date", "duration"] readme = "README.md" license = "ISC" homepage = "https://github.com/drahnr/rust-coarsetime" repository = "https://github.com/drahnr/rust-coarsetime" categories = ["concurrency", "date-and-time", "os"] edition = "2018" [features] nightly = [] [dependencies] once_cell = "1" [target.'cfg(not(target_os = "wasi"))'.dependencies] libc = "0.2" [target.'cfg(target_os = "wasi")'.dependencies] wasi = "0.11.0" [target.'cfg(all(any(target_arch = "wasm32", target_arch = "wasm64"), target_os = "unknown"))'.dependencies] wasm-bindgen = "0.2" [profile.release] lto = true panic = "abort" opt-level = 3 codegen-units = 1 incremental = false