Skip to content

Commit e412753

Browse files
committed
Add feature flags allowing selection of which commands to build and install. With this we no longer need to provide individual crates for each of the commands, and so we stop doing that.
1 parent e95b4e4 commit e412753

90 files changed

Lines changed: 107 additions & 378 deletions

Some content is hidden

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

Cargo.lock

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,18 @@
11
[workspace]
22

33
members = [
4-
"dp2",
5-
"aa2",
6-
"st2",
7-
"di2",
8-
"cm2",
9-
"pu2",
10-
"le2",
11-
"tag2",
12-
"tags2",
13-
"rmtag2",
4+
"commands/dp2",
5+
"commands/aa2",
6+
"commands/st2",
7+
"commands/di2",
8+
"commands/cm2",
9+
"commands/pu2",
10+
"commands/le2",
11+
"commands/tag2",
12+
"commands/tags2",
13+
"commands/rmtag2",
1414
]
1515

1616
exclude = [
1717
"repotools",
18-
"see_instead",
1918
]

README.md

Lines changed: 26 additions & 5 deletions

aa2/README.md

Lines changed: 0 additions & 33 deletions
This file was deleted.

aa2/build.rs

Lines changed: 0 additions & 1 deletion
This file was deleted.

cm2/README.md

Lines changed: 0 additions & 32 deletions
This file was deleted.

cm2/build.rs

Lines changed: 0 additions & 1 deletion
This file was deleted.

aa2/Cargo.toml renamed to commands/aa2/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[package]
22
name = "aa2"
3+
publish = false
34
description = "add all files in git repository to index, optionally limited to one or more directories"
45
license = "ISC"
5-
readme = "README.md"
66
repository = "https://github.com/ctsrc/repotools/tree/master/aa2"
7-
version = "0.9.1"
7+
version = "0.9.2"
88
authors = ["Erik Nordstrøm <erik@nordstroem.no>"]
99
edition = "2018"
1010

File renamed without changes.

commands/aa2/build.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../repotools/build.rs

0 commit comments

Comments
 (0)