Skip to content

Commit

Permalink
adjust to renaming of git-worktree to gix-worktree
Browse files Browse the repository at this point in the history
  • Loading branch information
Byron committed Feb 16, 2023
1 parent 1781b34 commit 73a1282
Show file tree
Hide file tree
Showing 73 changed files with 684 additions and 684 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ jobs:
- name: Install Rust
run: rustup update stable && rustup default stable && rustup target add ${{ matrix.target }}
- uses: Swatinem/rust-cache@v2
- run: set +x; for name in gix-actor gix-attributes git-bitmap git-chunk git-command git-commitgraph gix-date gix-glob gix-hash gix-hashtable git-mailmap gix-object git-packetline gix-path gix-pathspec gix-quote git-refspec git-revision git-traverse gix-validate; do (cd $name && cargo build --target ${{ matrix.target }}); done
- run: set +x; for name in gix-actor gix-attributes git-bitmap git-chunk git-command git-commitgraph gix-date gix-glob gix-hash gix-hashtable git-mailmap gix-object git-packetline gix-path gix-pathspec gix-quote git-refspec git-revision gix-traverse gix-validate; do (cd $name && cargo build --target ${{ matrix.target }}); done
name: crates without feature toggles
- run: set +x; for feature in progress fs-walkdir-parallel parallel io-pipe crc32 zlib zlib-rust-backend fast-sha1 rustsha1 cache-efficiency-debug; do (cd gix-features && cargo build --features $feature --target ${{ matrix.target }}); done
name: features of gix-features
Expand Down
54 changes: 27 additions & 27 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ members = [
"gix-glob",
"git-diff",
"gix-date",
"git-traverse",
"gix-traverse",
"git-index",
"git-bitmap",
"gix-worktree",
Expand Down Expand Up @@ -187,7 +187,7 @@ members = [
"git-index/tests",
"gix-ref/tests",
"gix-config/tests",
"git-traverse/tests",
"gix-traverse/tests",
]
exclude = ["cargo-smart-release/tests/fixtures/tri-depth-workspace/a",
"cargo-smart-release/tests/fixtures/tri-depth-workspace/b",
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ is usable to some extent.
* [git-odb](https://github.com/Byron/gitoxide/blob/main/crate-status.md#git-odb)
* [git-commitgraph](https://github.com/Byron/gitoxide/blob/main/crate-status.md#git-commitgraph)
* [git-diff](https://github.com/Byron/gitoxide/blob/main/crate-status.md#git-diff)
* [git-traverse](https://github.com/Byron/gitoxide/blob/main/crate-status.md#git-traverse)
* [gix-traverse](https://github.com/Byron/gitoxide/blob/main/crate-status.md#gix-traverse)
* [gix-features](https://github.com/Byron/gitoxide/blob/main/crate-status.md#gix-features)
* [git-credentials](https://github.com/Byron/gitoxide/blob/main/crate-status.md#git-credentials)
* [gix-sec](https://github.com/Byron/gitoxide/blob/main/crate-status.md#gix-sec)
Expand Down
2 changes: 1 addition & 1 deletion STABILITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ The following schematic helps to visualize what follows.
│ │ │ git-odb │ │ git-diff │ │ │ │
│ │ └─────────────┘ └─────────────┘ │ │
│ │ ┌─────────────┐ ┌─────────────┐ │ │ │
│ │ │git-traverse │ │ git-pack │ │◀ ─ ┼ ─
│ │ │gix-traverse │ │ git-pack │ │◀ ─ ┼ ─
│ │ └─────────────┘ └─────────────┘ │ │
│ │ ┌ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ┐ │ │
│ │ …many more… │ │
Expand Down

0 comments on commit 73a1282

Please sign in to comment.