1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
2#
3# When uploading crates to the registry Cargo will automatically
4# "normalize" Cargo.toml files for maximal compatibility
5# with all versions of Cargo and also rewrite `path` dependencies
6# to registry (e.g., crates.io) dependencies.
7#
8# If you are reading this file be aware that the original Cargo.toml
9# will likely look very different (and much more reasonable).
10# See Cargo.toml.orig for the original contents.
11
12[package]
13edition = "2018"
14rust-version = "1.34.0"
15name = "camino"
16version = "1.1.9"
17authors = [
18    "Without Boats <[email protected]>",
19    "Ashley Williams <[email protected]>",
20    "Steve Klabnik <[email protected]>",
21    "Rain <[email protected]>",
22]
23build = "build.rs"
24exclude = [
25    ".cargo/**/*",
26    ".github/**/*",
27]
28autobins = false
29autoexamples = false
30autotests = false
31autobenches = false
32description = "UTF-8 paths"
33documentation = "https://docs.rs/camino"
34readme = "README.md"
35keywords = [
36    "paths",
37    "utf8",
38    "unicode",
39    "filesystem",
40]
41categories = [
42    "development-tools",
43    "filesystem",
44    "os",
45]
46license = "MIT OR Apache-2.0"
47repository = "https://github.com/camino-rs/camino"
48
49[package.metadata.docs.rs]
50all-features = true
51rustdoc-args = ["--cfg=doc_cfg"]
52
53[lib]
54name = "camino"
55path = "src/lib.rs"
56
57[[test]]
58name = "integration_tests"
59path = "tests/integration_tests.rs"
60
61[dependencies.proptest]
62version = "1.0.0"
63optional = true
64
65[dependencies.serde]
66version = "1"
67features = ["derive"]
68optional = true
69
70[dev-dependencies.bincode]
71version = "1"
72
73[dev-dependencies.serde_bytes]
74version = "0.11.8"
75
76[features]
77proptest1 = ["proptest"]
78serde1 = ["serde"]
79