[package]
edition = "2024"
rust-version = "1.88"
name = "torrust-clock"
version = "3.0.0"
authors = ["Nautilus Cyberneering <info@nautilus-cyberneering.de>, Mick van Dijke <mick@dutchbits.nl>"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A library providing a working and mockable clock for deterministic testing."
homepage = "https://torrust.com/"
documentation = "https://docs.rs/torrust-clock/"
readme = "README.md"
keywords = [
"clock",
"library",
"time",
]
categories = [
"date-and-time",
"development-tools::testing",
]
license = "AGPL-3.0-only"
repository = "https://github.com/torrust/torrust-clock"
[lib]
name = "torrust_clock"
path = "src/lib.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.chrono]
version = "0"
features = ["clock"]
default-features = false
[dependencies.tracing]
version = "0"
[dev-dependencies]