[package] name = "jaso" version = "1.0.1" authors = ["Junghyun Nam ", "Hyeon Kim "] edition = "2021" description = """ jaso normalizes filenames to their Unicode NFC format in parallel, and is much faster than convmv(1). """ repository = "https://github.com/cr0sh/jaso" homepage = "https://github.com/cr0sh/jaso" license = "Apache-2.0 OR MIT" keywords = ["cli", "convmv", "unicode", "nfc", "hangul"] categories = ["command-line-utilities"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] async-recursion = "1.0.0" clap = { version = "4.0.32", features = ["derive"] } clap_complete = "4.5.33" rlimit = "0.10.2" tokio = { version = "1.23.0", features = ["sync", "rt", "rt-multi-thread", "parking_lot", "macros", "time", "fs"] } unicode-normalization = "0.1.22" [profile.release] panic = "abort"