[package]
edition = "2024"
rust-version = "1.85"
name = "tachyon"
version = "0.1.0"
authors = ["Nils Homer <nils@fulcrumgenomics.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Detect the cloaked: measure a host's memory access rate under current contention"
homepage = "https://github.com/nh13/tachyon"
readme = "README.md"
keywords = [
"benchmark",
"contention",
"memory",
"latency",
"cloud",
]
categories = [
"command-line-utilities",
"development-tools::profiling",
]
license = "MIT"
repository = "https://github.com/nh13/tachyon"
[lib]
name = "tachyon"
path = "src/lib.rs"
[[bin]]
name = "tachyon"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1