Charisee | 110dd35 | 2022-07-14 21:43:52 +0000 | [diff] [blame] | 1 | [package] |
| 2 | name = "os_str_bytes" |
| 3 | version = "6.1.0" |
| 4 | authors = ["dylni"] |
| 5 | edition = "2021" |
| 6 | rust-version = "1.57.0" |
| 7 | description = """ |
| 8 | Utilities for converting between byte sequences and platform-native strings |
| 9 | """ |
| 10 | readme = "README.md" |
| 11 | repository = "https://github.com/dylni/os_str_bytes" |
| 12 | license = "MIT OR Apache-2.0" |
| 13 | keywords = ["bytes", "osstr", "osstring", "path", "windows"] |
| 14 | categories = ["command-line-interface", "development-tools::ffi", "encoding", "os", "rust-patterns"] |
| 15 | exclude = [".*", "/rustfmt.toml", "/tests"] |
| 16 | |
| 17 | [package.metadata.docs.rs] |
| 18 | all-features = true |
| 19 | rustc-args = ["--cfg", "os_str_bytes_docs_rs"] |
| 20 | rustdoc-args = ["--cfg", "os_str_bytes_docs_rs"] |
| 21 | |
| 22 | [dependencies] |
| 23 | memchr = { version = "2.4", optional = true } |
| 24 | print_bytes = { version = "0.6", optional = true } |
| 25 | uniquote = { version = "3.0", optional = true } |
| 26 | |
| 27 | [dev-dependencies] |
| 28 | getrandom = "0.2" |
| 29 | |
| 30 | [features] |
| 31 | default = ["memchr", "raw_os_str"] |
| 32 | |
| 33 | raw_os_str = [] |