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