| 1 | [package] |
| 2 | name = "shlex" |
| 3 | version = "1.3.0" |
| 4 | authors = [ |
| 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 | ] |
| 12 | license = "MIT OR Apache-2.0" |
| 13 | repository = "https://github.com/comex/rust-shlex" |
| 14 | description = "Split a string into shell words, like Python's shlex." |
| 15 | categories = [ |
| 16 | "command-line-interface" , |
| 17 | "parser-implementations" |
| 18 | ] |
| 19 | rust-version = "1.46.0" |
| 20 | |
| 21 | [features] |
| 22 | std = [] |
| 23 | default = ["std" ] |
| 24 | |