[package]
edition = "2021"
rust-version = "1.70.0"
name = "softpath"
version = "0.3.0"
authors = ["ALIBI Ghazi <ghazi.alibi@outlook.fr>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A human-friendly file and directory path manipulation library for Rust."
documentation = "https://docs.rs/softpath"
readme = "README.md"
keywords = [
"path",
"filesystem",
"utility",
"io",
"files",
]
categories = [
"filesystem",
"os",
]
license = "MIT"
repository = "https://github.com/GhaziAlibi/softpath"
[lib]
name = "softpath"
path = "src/lib.rs"
[[example]]
name = "config"
path = "examples/config.rs"
[[example]]
name = "demo"
path = "examples/demo.rs"
[[example]]
name = "fluent"
path = "examples/fluent.rs"
[[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"
[[bench]]
name = "comparison"
path = "benches/comparison.rs"
[[bench]]
name = "path_ops"
path = "benches/path_ops.rs"
harness = false
[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"