-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
58 lines (48 loc) · 1.31 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
[package]
name = "fs-more"
version = "0.8.0"
rust-version = "1.74.1"
authors = [
"Simon Goričar <[email protected]>"
]
edition = "2021"
description = "Convenient file and directory operations with progress reporting built on top of std::fs."
readme = "README.md"
keywords = [
"fs",
"copy",
"move",
"progress"
]
categories = [
"filesystem"
]
documentation = "https://docs.rs/fs-more"
license = "MIT OR Apache-2.0"
repository = "https://github.com/simongoricar/fs-more"
include = [
"/src",
"/subcrates",
"/tests",
"LICENSE"
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = [
"subcrates/test-harness",
"subcrates/test-harness-tree-generator",
"subcrates/test-harness-tree-schema"
]
[features]
default = ["dunce"]
# Enables [`fs-err`](https://docs.rs/fs-err) support, which means more helpful underlying IO error messages,
# though `fs-more` already provides plenty context on its own.
fs-err = ["dep:fs-err"]
dunce = ["dep:dunce"]
[dependencies]
thiserror = "1.0.58"
# Optional dependencies (see [features] section above).
dunce = { version = "1.0.4", optional = true }
fs-err = { version = "2.11.0", optional = true }
[dev-dependencies]
fs-more-test-harness = { path = "./subcrates/test-harness" }