forked from rustcoreutils/posixutils-rs
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCargo.toml
48 lines (43 loc) · 779 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
46
47
[workspace]
resolver = "2"
members = [
"awk",
"calc",
"datetime",
"dev",
"display",
"file",
"fs",
"ftw",
"make",
"m4",
"m4/test-manager",
"gettext-rs",
"misc",
"pathnames",
"plib",
"process",
"sccs",
"screen",
"sh",
"sys",
"text",
"tree",
"users",
"xform",
"i18n"
]
[workspace.package]
repository = "https://github.com/rustcoreutils/posixutils-rs"
license = "MIT"
edition = "2021"
rust-version = "1.84.0"
[workspace.dependencies]
clap = { version = "4", default-features = false, features = ["std", "derive", "help", "usage", "error-context", "cargo"] }
chrono = { version = "0.4", default-features = false, features = ["clock"] }
libc = "0.2"
regex = "1.10"
gettext-rs = { path = "./gettext-rs" }
errno = "0.3"
chrono-tz = "0.10"
[workspace.lints]