aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
diff options
context:
space:
mode:
authorJeff Vander Stoep <jeffv@google.com>2022-12-13 17:41:26 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2022-12-13 17:41:26 +0000
commitbadd28067fcec4ba5bf692aaf2fc39c9cec10a9d (patch)
treee74967a2ccaad34b918be498fe7f0d7b64c90527 /Cargo.toml.orig
parent5d2fd3007cb69905e0eb3397527471c25859c651 (diff)
parent01180d8d339214181adefba44757fde3439e155e (diff)
downloados_str_bytes-badd28067fcec4ba5bf692aaf2fc39c9cec10a9d.tar.gz
Update os_str_bytes to 6.4.1 am: f983a87abb am: 01180d8d33
Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/os_str_bytes/+/2345753 Change-Id: I991aae5697ecf559079146e012f0bf4d489b7c72 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
Diffstat (limited to 'Cargo.toml.orig')
-rw-r--r--Cargo.toml.orig34
1 files changed, 34 insertions, 0 deletions
diff --git a/Cargo.toml.orig b/Cargo.toml.orig
new file mode 100644
index 0000000..dd388f2
--- /dev/null
+++ b/Cargo.toml.orig
@@ -0,0 +1,34 @@
+[package]
+name = "os_str_bytes"
+version = "6.4.1"
+authors = ["dylni"]
+edition = "2021"
+rust-version = "1.57.0"
+description = """
+Convert between byte sequences and platform-native strings
+"""
+readme = "README.md"
+repository = "https://github.com/dylni/os_str_bytes"
+license = "MIT OR Apache-2.0"
+keywords = ["bytes", "osstr", "osstring", "path", "windows"]
+categories = ["command-line-interface", "development-tools::ffi", "encoding", "os", "rust-patterns"]
+exclude = [".*", "tests.rs", "/rustfmt.toml", "/src/bin", "/tests"]
+
+[package.metadata.docs.rs]
+all-features = true
+rustc-args = ["--cfg", "os_str_bytes_docs_rs"]
+rustdoc-args = ["--cfg", "os_str_bytes_docs_rs"]
+
+[dependencies]
+memchr = { version = "2.4", optional = true }
+print_bytes = { version = "0.7", optional = true }
+uniquote = { version = "3.0", optional = true }
+
+[dev-dependencies]
+getrandom = "0.2"
+
+[features]
+default = ["memchr", "raw_os_str"]
+
+checked_conversions = []
+raw_os_str = []