-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCargo.toml
46 lines (40 loc) · 796 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
39
40
41
42
43
44
45
46
[package]
authors = ["Rett Berg <[email protected]>"]
description = "Ergonomic paths and files in rust."
documentation = "https://docs.rs/path_abs"
keywords = [
"filesystem",
"path",
"file",
"types",
"serde",
]
license = "MIT OR Apache-2.0"
name = "path_abs"
readme = "README.md"
repository = "https://github.com/vitiral/path_abs"
version = "0.5.1"
edition = "2018"
[dependencies]
std_prelude = "0.2.12"
[dependencies.serde]
optional = true
version = "^1.0"
[dependencies.serde_derive]
optional = true
version = "^1.0"
[dependencies.stfu8]
optional = true
version = "^0.2.1"
[dev-dependencies]
pretty_assertions = "^0.4"
regex = "^0.2"
serde_json = "^1.0"
tempfile = "^3"
[features]
default = ["serialize"]
serialize = [
"serde",
"serde_derive",
"stfu8",
]