[package]
edition = "2021"
name = "losan"
version = "1.0.0"
authors = ["samutrova"]
build = false
include = [
"src/**/*",
"Cargo.toml",
"README.md",
"LICENSE-MIT",
"LICENSE-APACHE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An high-performance multi-threaded log sanitizer built in Rust"
readme = "README.md"
keywords = [
"log",
"sanitizer",
"privacy",
"security",
"cli",
]
categories = [
"command-line-utilities",
"text-processing",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/samutrova/losan"
[[bin]]
name = "losan"
path = "src/main.rs"
[dependencies.clap]
version = "4.6.6"
features = ["derive"]
[dependencies.indicatif]
version = "0.18.6"
[dependencies.memchr]
version = "2.8.3"
[dependencies.owo-colors]
version = "4.3.0"
[dependencies.rayon]
version = "1.12.0"
[dependencies.regex]
version = "1.13.1"
[dependencies.tabled]
version = "0.21.0"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
panic = "abort"
strip = true