[[bench]]
harness = false
name = "path_ops"
path = "benches/path_ops.rs"
[dependencies.dirs]
version = "6.0.0"
[dependencies.dunce]
version = "1.0"
[dependencies.home]
version = "0.5"
[dependencies.thiserror]
version = "1.0"
[dependencies.walkdir]
version = "2.3"
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.pretty_assertions]
version = "1.4"
[dev-dependencies.tempfile]
version = "3.8"
[dev-dependencies.test-case]
version = "3.1"
[[example]]
name = "config"
path = "examples/config.rs"
[[example]]
name = "demo"
path = "examples/demo.rs"
[[example]]
name = "fluent"
path = "examples/fluent.rs"
[lib]
name = "softpath"
path = "src/lib.rs"
[package]
authors = ["ALIBI Ghazu <ghazi.alibi@outlook.fr>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["filesystem", "os"]
description = "A human-friendly file and directory path manipulation library for Rust."
documentation = "https://docs.rs/softpath"
edition = "2021"
keywords = ["path", "filesystem", "utility", "io", "files"]
license = "MIT"
name = "softpath"
readme = "README.md"
repository = "https://github.com/GhaziAlibi/softpath"
rust-version = "1.70.0"
version = "0.2.0"
[[test]]
name = "concurrent_operations"
path = "tests/concurrent_operations.rs"
[[test]]
name = "directory_operations"
path = "tests/directory_operations.rs"
[[test]]
name = "error_handling"
path = "tests/error_handling.rs"
[[test]]
name = "file_operations"
path = "tests/file_operations.rs"
[[test]]
name = "path_components"
path = "tests/path_components.rs"
[[test]]
name = "path_types"
path = "tests/path_types.rs"
[[test]]
name = "platform_specific"
path = "tests/platform_specific.rs"
[[test]]
name = "test_softpath_errors"
path = "tests/test_softpath_errors.rs"