-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
32 lines (27 loc) · 983 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
[package]
name = "path-absolutize"
version = "3.1.1"
authors = ["Magic Len <[email protected]>"]
edition = "2021"
rust-version = "1.60"
repository = "https://github.com/magiclen/path-absolutize"
homepage = "https://magiclen.org/path-absolutize"
keywords = ["path", "dot", "dedot", "absolute", "canonical"]
categories = ["parser-implementations", "filesystem"]
description = "A library for extending `Path` and `PathBuf` in order to get an absolute path and remove the containing dots."
license = "MIT"
include = ["src/**/*", "Cargo.toml", "README.md", "LICENSE", "benches/bench.rs"]
[dependencies]
path-dedot = "3.1.1"
[dev-dependencies]
bencher = "0.1.5"
[target.'cfg(windows)'.dev-dependencies]
slash-formatter = "3"
[features]
once_cell_cache = ["path-dedot/once_cell_cache"]
lazy_static_cache = ["path-dedot/lazy_static_cache"]
unsafe_cache = ["path-dedot/unsafe_cache"]
use_unix_paths_on_wasm = ["path-dedot/use_unix_paths_on_wasm"]
[[bench]]
name = "bench"
harness = false