[package] name = "full2half" version = "0.1.1" edition = "2021" description = "Library and CLI for converting full-width characters to half-width characters and vice versa." authors = ["Pascal Schwietzer "] license = "MIT" readme = "README.md" repository = "https://gitlab.com/pSchwietzer/full2half" keywords = ["full-width", "half-width", "conversion", "characters", "unicode"] categories = ["command-line-utilities"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] clap = { version = "4.4.16", features = ["derive"] } [[bin]] name = "full2half" path = "src/main.rs" [lib] name = "full2half" path = "src/lib.rs" test = true doctest = true doc = true crate-type = ["lib"]