[dependencies.chrono]
features = ["serde"]
version = "0.4"
[dependencies.chrono-humanize]
version = "0.2.3"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.serde_json]
version = "1.0"
[dependencies.tabled]
version = "0.20.0"
[lib]
name = "time_requirements"
path = "src/lib.rs"
[lints.clippy]
clone_on_copy = "forbid"
doc_markdown = "allow"
missing_panics_doc = "allow"
new_ret_no_self = "allow"
should_panic_without_expect = "allow"
struct_excessive_bools = "allow"
unreadable_literal = "allow"
[lints.clippy.pedantic]
level = "deny"
priority = -1
[lints.rust]
deprecated = "deny"
missing_docs = "forbid"
unconditional_recursion = "forbid"
unreachable_patterns = "forbid"
unused_import_braces = "forbid"
unused_macro_rules = "forbid"
unused_must_use = "forbid"
[lints.rustdoc]
bare_urls = "forbid"
broken_intra_doc_links = "forbid"
invalid_codeblock_attributes = "forbid"
invalid_html_tags = "forbid"
invalid_rust_codeblocks = "forbid"
missing_crate_level_docs = "forbid"
redundant_explicit_links = "forbid"
unescaped_backticks = "forbid"
[package]
authors = ["Earth Metabolome Initiative"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["development-tools::profiling", "development-tools"]
description = "Crate to measure time requirements of steps in your code."
documentation = "https://docs.rs/time_requirements"
edition = "2024"
homepage = "https://github.com/earth-metabolome-initiative/time_requirements"
keywords = ["time", "measurement", "performance", "profiling"]
license = "MIT"
name = "time_requirements"
readme = "README.md"
repository = "https://github.com/earth-metabolome-initiative/time_requirements"
version = "0.1.0"
[[test]]
name = "test_time_requirements"
path = "tests/test_time_requirements.rs"