-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (35 loc) · 901 Bytes
/
Copy pathCargo.toml
File metadata and controls
43 lines (35 loc) · 901 Bytes
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
[package]
name = "typed-path"
description = "Provides typed variants of Path and PathBuf for Unix and Windows"
version = "0.12.3"
edition = "2021"
rust-version = "1.65.0"
authors = ["Chip Senkbeil <chip@senkbeil.org>"]
categories = ["development-tools", "filesystem", "os"]
keywords = ["unicode", "utf8", "paths", "filesystem"]
homepage = "https://github.com/chipsenkbeil/typed-path"
repository = "https://github.com/chipsenkbeil/typed-path"
readme = "README.md"
license = "MIT OR Apache-2.0"
[dependencies]
[features]
default = ["std"]
std = []
[[example]]
name = "typed"
required-features = ["std"]
[[example]]
name = "typed_utf8"
required-features = ["std"]
[[example]]
name = "unix"
required-features = ["std"]
[[example]]
name = "unix_utf8"
required-features = ["std"]
[[example]]
name = "windows"
required-features = ["std"]
[[example]]
name = "windows_utf8"
required-features = ["std"]