Skip to content

Commit

Permalink
adjust to renaming of git-revision to gix-revision
Browse files Browse the repository at this point in the history
  • Loading branch information
Byron committed Feb 16, 2023
1 parent 3308a45 commit ee0ee84
Show file tree
Hide file tree
Showing 80 changed files with 596 additions and 596 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 gix-command git-commitgraph gix-date gix-glob gix-hash gix-hashtable git-mailmap gix-object gix-packetline gix-path gix-pathspec gix-quote git-refspec git-revision gix-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 gix-command git-commitgraph gix-date gix-glob gix-hash gix-hashtable git-mailmap gix-object gix-packetline gix-path gix-pathspec gix-quote git-refspec gix-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
72 changes: 36 additions & 36 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 @@ -149,7 +149,7 @@ members = [
"git-index",
"git-bitmap",
"gix-worktree",
"git-revision",
"gix-revision",
"gix-packetline",
"git-mailmap",
"git-note",
Expand Down Expand Up @@ -181,7 +181,7 @@ members = [
"cargo-smart-release",
"tests/tools",

"git-revision/tests",
"gix-revision/tests",
"git-diff/tests",
"git-pack/tests",
"git-index/tests",
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ check: ## Build all code in suitable configurations
cd git-index && cargo check --features serde1
cd gix-credentials && cargo check --features serde1
cd gix-sec && cargo check --features serde1
cd git-revision && cargo check --features serde1
cd gix-revision && cargo check --features serde1
cd gix-attributes && cargo check --features serde1
cd gix-glob && cargo check --features serde1
cd git-mailmap && cargo check --features serde1
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ is usable to some extent.
* [gix-attributes](https://github.com/Byron/gitoxide/blob/main/crate-status.md#gix-attributes)
* [gix-pathspec](https://github.com/Byron/gitoxide/blob/main/crate-status.md#gix-pathspec)
* [git-index](https://github.com/Byron/gitoxide/blob/main/crate-status.md#git-index)
* [git-revision](https://github.com/Byron/gitoxide/blob/main/crate-status.md#git-revision)
* [gix-revision](https://github.com/Byron/gitoxide/blob/main/crate-status.md#gix-revision)
* [gix-command](https://github.com/Byron/gitoxide/blob/main/crate-status.md#gix-command)
* [gix-prompt](https://github.com/Byron/gitoxide/blob/main/crate-status.md#gix-prompt)
* [git-refspec](https://github.com/Byron/gitoxide/blob/main/crate-status.md#git-refspec)
Expand Down

0 comments on commit ee0ee84

Please sign in to comment.