[package]
edition = "2021"
rust-version = "1.96.0"
name = "timeglyph"
version = "0.3.0"
authors = ["Albert Hui <albert@securityronin.com>"]
build = false
exclude = [
"docs/",
"fuzz/",
".github/",
"mkdocs.yml",
"site/",
"HANDOFF.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Forensic timestamp decipherment — decode, encode, and identify the many ways systems inscribe time, with scored, cited, ambiguity-first interpretation."
readme = "README.md"
keywords = [
"forensics",
"timestamp",
"dfir",
"epoch",
"datetime",
]
categories = [
"date-and-time",
"command-line-utilities",
]
license = "Apache-2.0"
repository = "https://github.com/SecurityRonin/timeglyph"
[features]
leap = ["dep:hifitime"]
lunisolar = ["dep:stem-branch"]
[lib]
name = "timeglyph"
path = "src/lib.rs"
[[bin]]
name = "timeglyph"
path = "src/main.rs"
[[test]]
name = "anchors"
path = "tests/anchors.rs"
[[test]]
name = "catalog"
path = "tests/catalog.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "context_scoring"
path = "tests/context_scoring.rs"
[[test]]
name = "coverage_edges"
path = "tests/coverage_edges.rs"
[[test]]
name = "csv_enrich"
path = "tests/csv_enrich.rs"
[[test]]
name = "encoding"
path = "tests/encoding.rs"
[[test]]
name = "epistemics"
path = "tests/epistemics.rs"
[[test]]
name = "json"
path = "tests/json.rs"
[[test]]
name = "leap"
path = "tests/leap.rs"
[[test]]
name = "lunisolar"
path = "tests/lunisolar.rs"
[[test]]
name = "oracle"
path = "tests/oracle.rs"
[[test]]
name = "robustness"
path = "tests/robustness.rs"
[[test]]
name = "scoring"
path = "tests/scoring.rs"
[[test]]
name = "sentinels"
path = "tests/sentinels.rs"
[[test]]
name = "strings"
path = "tests/strings.rs"
[[test]]
name = "timezone"
path = "tests/timezone.rs"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.csv]
version = "1"
[dependencies.hex]
version = "0.4"
[dependencies.hifitime]
version = "4.3"
optional = true
[dependencies.jiff]
version = "0.2"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.stem-branch]
version = "0.4"
optional = true
[dependencies.thiserror]
version = "2"
[dev-dependencies.serde_json]
version = "1"
[lints.clippy]
correctness = "deny"
expect_used = "deny"
suspicious = "deny"
unwrap_used = "deny"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.cast_possible_truncation]
level = "allow"
priority = 1
[lints.clippy.cast_possible_wrap]
level = "allow"
priority = 1
[lints.clippy.cast_precision_loss]
level = "allow"
priority = 1
[lints.clippy.cast_sign_loss]
level = "allow"
priority = 1
[lints.clippy.doc_lazy_continuation]
level = "allow"
priority = 1
[lints.clippy.doc_markdown]
level = "allow"
priority = 1
[lints.clippy.missing_errors_doc]
level = "allow"
priority = 1
[lints.clippy.missing_panics_doc]
level = "allow"
priority = 1
[lints.clippy.module_name_repetitions]
level = "allow"
priority = 1
[lints.clippy.must_use_candidate]
level = "allow"
priority = 1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"