-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
Copy pathCargo.toml
45 lines (39 loc) · 961 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
33
34
35
36
37
38
39
40
41
42
43
44
45
[package]
name = "uu_mv"
description = "mv ~ (uutils) move (rename) SOURCE to DESTINATION"
repository = "https://github.com/uutils/coreutils/tree/main/src/uu/mv"
version.workspace = true
authors.workspace = true
license.workspace = true
homepage.workspace = true
keywords.workspace = true
categories.workspace = true
edition.workspace = true
readme.workspace = true
[lints]
workspace = true
[lib]
path = "src/mv.rs"
[dependencies]
clap = { workspace = true }
fs_extra = { workspace = true }
indicatif = { workspace = true }
libc = { workspace = true }
thiserror = { workspace = true }
uucore = { workspace = true, features = [
"backup-control",
"fs",
"fsxattr",
"update-control",
] }
[target.'cfg(windows)'.dependencies]
windows-sys = { workspace = true, features = [
"Win32_Foundation",
"Win32_Security",
"Win32_Storage_FileSystem",
] }
[target.'cfg(unix)'.dependencies]
libc = { workspace = true }
[[bin]]
name = "mv"
path = "src/main.rs"