Skip to content

Commit efd90b0

Browse files
authored
Merge pull request #110 from vadimb892/man-package
READY: [man] move man outside display as independed package
2 parents 2e2f315 + ba09360 commit efd90b0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

117 files changed

+66323
-11
lines changed

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ members = [
1111
"fs",
1212
"ftw",
1313
"make",
14+
"man",
1415
"m4",
1516
"m4/test-manager",
1617
"gettext-rs",

display/Cargo.toml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,12 @@ clap.workspace = true
1212
clap.features = ["env"]
1313
gettext-rs.workspace = true
1414
libc.workspace = true
15-
pest = "2.7"
16-
pest_derive = "2.7"
1715
termion = "4.0"
1816
thiserror = "1.0"
19-
chrono = { version = "0.4", features = ["unstable-locales"] }
2017
regex.workspace = true
21-
terminfo = "0.9.0"
22-
lazy_static = "1.4"
2318

2419
[dev-dependencies]
2520
plib = { path = "../plib" }
26-
rstest = "0.25.0"
2721

2822
[lints]
2923
workspace = true
@@ -36,10 +30,6 @@ path = "./echo.rs"
3630
name = "printf"
3731
path = "./printf.rs"
3832

39-
[[bin]]
40-
name = "man"
41-
path = "./man.rs"
42-
4333
[[bin]]
4434
name = "more"
4535
path = "./more.rs"

display/tests/display-tests.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,5 @@
88
//
99

1010
mod echo;
11-
mod man;
1211
mod more;
1312
mod printf;

man/Cargo.toml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
[package]
2+
name = "posixutils-man"
3+
version = "0.2.2"
4+
authors = ["Jeff Garzik"]
5+
repository.workspace = true
6+
license.workspace = true
7+
edition.workspace = true
8+
rust-version.workspace = true
9+
10+
[dependencies]
11+
clap.workspace = true
12+
clap.features = ["env"]
13+
gettext-rs.workspace = true
14+
libc.workspace = true
15+
pest = "2.7"
16+
pest_derive = "2.7"
17+
thiserror = "1.0"
18+
chrono = { version = "0.4", features = ["unstable-locales"] }
19+
regex.workspace = true
20+
terminfo = "0.9.0"
21+
lazy_static = "1.4"
22+
23+
[dev-dependencies]
24+
plib = { path = "../plib" }
25+
rstest = "0.25.0"
26+
27+
[lints]
28+
workspace = true
29+
30+
[[bin]]
31+
name = "man"
32+
path = "./man.rs"

0 commit comments

Comments
 (0)