Skip to content

Commit 4dc9b44

Browse files
committed
adjust to renaming of git-actor to gix-actor
1 parent 9a6aea1 commit 4dc9b44

File tree

87 files changed

+671
-671
lines changed

Some content is hidden

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

87 files changed

+671
-671
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ jobs:
163163
- name: Install Rust
164164
run: rustup update stable && rustup default stable && rustup target add ${{ matrix.target }}
165165
- uses: Swatinem/rust-cache@v2
166-
- run: set +x; for name in git-actor git-attributes git-bitmap git-chunk git-command git-commitgraph git-date gix-glob gix-hash git-hashtable git-mailmap git-object git-packetline gix-path git-pathspec git-quote git-refspec git-revision git-traverse gix-validate; do (cd $name && cargo build --target ${{ matrix.target }}); done
166+
- run: set +x; for name in gix-actor git-attributes git-bitmap git-chunk git-command git-commitgraph git-date gix-glob gix-hash git-hashtable git-mailmap git-object git-packetline gix-path git-pathspec git-quote git-refspec git-revision git-traverse gix-validate; do (cd $name && cargo build --target ${{ matrix.target }}); done
167167
name: crates without feature toggles
168168
- 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
169169
name: features of gix-features

Cargo.lock

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

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ git-object = { opt-level = 3 }
106106
git-ref = { opt-level = 3 }
107107
#git-pack = { opt-level = 3 }
108108
gix-hash = { opt-level = 3 }
109-
git-actor = { opt-level = 3 }
109+
gix-actor = { opt-level = 3 }
110110
git-config = { opt-level = 3 }
111111
miniz_oxide = { opt-level = 3 }
112112
sha1 = { opt-level = 3 }
@@ -128,7 +128,7 @@ build-override = { opt-level = 0 }
128128

129129
[workspace]
130130
members = [
131-
"git-actor",
131+
"gix-actor",
132132
"git-url",
133133
"gix-hash",
134134
"gix-validate",

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ check: ## Build all code in suitable configurations
8080
cd gix-glob && cargo check --features serde1
8181
cd git-mailmap && cargo check --features serde1
8282
cd git-worktree && cargo check --features serde1
83-
cd git-actor && cargo check --features serde1
83+
cd gix-actor && cargo check --features serde1
8484
cd git-date && cargo check --features serde1
8585
cd git-pack && cargo check --features serde1 \
8686
&& cargo check --features pack-cache-lru-static \

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ These crates may be missing some features and thus are somewhat incomplete, but
5555
is usable to some extent.
5656

5757
* **usable** _(with rough but complete docs, possibly incomplete functionality)_
58-
* [git-actor](https://github.com/Byron/gitoxide/blob/main/crate-status.md#git-actor)
58+
* [gix-actor](https://github.com/Byron/gitoxide/blob/main/crate-status.md#gix-actor)
5959
* [gix-hash](https://github.com/Byron/gitoxide/blob/main/crate-status.md#gix-hash)
6060
* [git-object](https://github.com/Byron/gitoxide/blob/main/crate-status.md#git-object)
6161
* [gix-validate](https://github.com/Byron/gitoxide/blob/main/crate-status.md#gix-validate)

STABILITY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ The following schematic helps to visualize what follows.
5454
║ ▼ ║ │
5555
║ Foundation Crates───────────────────┐ ║
5656
║ │ ┌─────────────┐ ┌─────────────┐ │ ║ │
57-
║ │ │ gix-hash │ │ git-actor │ │ ║
57+
║ │ │ gix-hash │ │ gix-actor │ │ ║
5858
║ │ └─────────────┘ └─────────────┘ │ ║ │
5959
║ │ ┌─────────────┐ ┌─────────────┐ │ ║
6060
║ │ │ git-ref │ │ git-config │ │ ║ │

0 commit comments

Comments
 (0)