[package]
edition = "2024"
name = "rs-sim-basic"
version = "0.1.0"
build = false
exclude = []
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Simple CLI to print similarity score of the lines."
homepage = "https://github.com/takanoriyanagitani/rs-sim-basic"
documentation = "https://docs.rs/rs-sim-basic/latest"
readme = "README.md"
keywords = [
"similarity",
"score",
"dir",
"ltsv",
]
license = "Apache-2.0"
repository = "https://github.com/takanoriyanagitani/rs-sim-basic"
[lib]
name = "rs_sim_basic"
path = "src/lib.rs"
[[bin]]
name = "show-sim"
path = "src/bin/show-sim.rs"
[lints.clippy]
expect_used = "forbid"
panic = "forbid"
unwrap_used = "forbid"
[lints.rust]
unsafe_code = "forbid"
[profile.release-wasi]
opt-level = "s"
lto = true
codegen-units = 1
inherits = "release"
strip = true