-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
35 lines (30 loc) · 921 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[package]
name = "os_str_bytes"
version = "7.0.0"
authors = ["dylni"]
edition = "2021"
rust-version = "1.74.0"
description = """
Lossless functionality for 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.3.5", optional = true }
[dev-dependencies]
fastrand = "2.0"
lazy_static = "1.0.3"
tempfile = "3.8"
[features]
default = ["memchr", "raw_os_str"]
checked_conversions = ["conversions"]
conversions = []
raw_os_str = []