1[package] 2name = "shlex" 3version = "1.1.0" 4authors = [ 5 "comex <comexk@gmail.com>", 6 "Fenhl <fenhl@fenhl.net>" 7] 8license = "MIT OR Apache-2.0" 9repository = "https://github.com/comex/rust-shlex" 10description = "Split a string into shell words, like Python's shlex." 11categories = [ 12 "command-line-interface", 13 "parser-implementations" 14] 15 16[features] 17std = [] 18default = ["std"] 19