1[package] 2name = "shlex" 3version = "1.3.0" 4authors = [ 5 "comex <comexk@gmail.com>", 6 "Fenhl <fenhl@fenhl.net>", 7 "Adrian Taylor <adetaylor@chromium.org>", 8 "Alex Touchet <alextouchet@outlook.com>", 9 "Daniel Parks <dp+git@oxidized.org>", 10 "Garrett Berg <googberg@gmail.com>", 11] 12license = "MIT OR Apache-2.0" 13repository = "https://github.com/comex/rust-shlex" 14description = "Split a string into shell words, like Python's shlex." 15categories = [ 16 "command-line-interface", 17 "parser-implementations" 18] 19rust-version = "1.46.0" 20 21[features] 22std = [] 23default = ["std"] 24