-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Cargo.toml
38 lines (33 loc) · 951 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
36
37
38
[workspace]
members = ["."]
[package]
name = "camino"
description = "UTF-8 paths"
version = "1.1.9"
license = "MIT OR Apache-2.0"
readme = "README.md"
rust-version = "1.34.0"
keywords = ["paths", "utf8", "unicode", "filesystem"]
categories = ["development-tools", "filesystem", "os"]
repository = "https://github.com/camino-rs/camino"
documentation = "https://docs.rs/camino"
authors = [
"Without Boats <[email protected]>",
"Ashley Williams <[email protected]>",
"Steve Klabnik <[email protected]>",
"Rain <[email protected]>",
]
edition = "2018"
exclude = [".cargo/**/*", ".github/**/*"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg=doc_cfg"]
[dependencies]
proptest = { version = "1.0.0", optional = true }
serde = { version = "1", features = ["derive"], optional = true }
[dev-dependencies]
bincode = "1"
serde_bytes = "0.11.8"
[features]
serde1 = ["serde"]
proptest1 = ["proptest"]