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