forked from nicokoch/reflink
-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
37 lines (31 loc) · 1.19 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
[package]
name = "reflink-copy"
version = "0.1.23"
authors = ["Jiahao XU <[email protected]>"]
edition = "2018"
description = "copy-on-write mechanism on supported file systems"
documentation = "https://docs.rs/reflink-copy"
homepage = "https://github.com/cargo-bins/reflink-copy"
repository = "https://github.com/cargo-bins/reflink-copy"
readme = "README.md"
keywords = ["reflink", "COW", "copy", "btrfs", "xfs"]
categories = ["filesystem", "os"]
license = "MIT/Apache-2.0"
[dependencies]
cfg-if = "1.0.0"
tracing = { version = "0.1.37", default-features = false, optional = true }
tracing-attributes = { version = "0.1.26", optional = true }
[target.'cfg(any(target_os = "linux", target_os = "android"))'.dependencies.rustix]
version = "0.38.20"
default-features = false
features = ["fs", "std"]
[target.'cfg(target_os = "linux")'.dependencies.libc]
version = "0.2.169"
[target.'cfg(windows)'.dependencies]
windows = { version = "0.59.0", features = ["Win32_Storage_FileSystem", "Win32_Foundation", "Win32_System_Ioctl", "Win32_System_IO", "Win32_System_SystemServices"] }
[features]
tracing = ["dep:tracing", "dep:tracing-attributes"]
[dev-dependencies]
tempfile = "3.12.0"
regex = "1.11.1"
walkdir = "2.5.0"