look_at_that/Cargo.toml

26 lines
493 B
TOML
Raw Permalink Normal View History

2025-03-21 05:03:03 +00:00
[package]
authors = ["ReactorScram"]
categories = ["command-line-utilities"]
description = "ls + cat == lk"
name = "look_at_that"
license = "AGPL-3.0"
2025-03-21 17:01:13 +00:00
repository = "https://six-five-six-four.com/git/reactor/look_at_that"
2025-03-21 05:03:03 +00:00
version = "0.1.0"
edition = "2024"
[[bin]]
name = "lk"
path = "src/main.rs"
[dependencies]
2025-03-21 08:07:52 +00:00
anyhow = { version = "1.0.97", features = ["backtrace"] }
2025-03-21 06:44:04 +00:00
camino = "1.1.9"
2025-03-21 05:46:08 +00:00
2025-03-21 06:10:10 +00:00
[dev-dependencies]
tempfile = "3.19.1"
2025-03-21 05:46:08 +00:00
[profile.release]
codegen-units = 1
lto = true
opt-level = "z"