Skip to content

Commit

Permalink
adjust to renaming of git-pack to gix-pack
Browse files Browse the repository at this point in the history
  • Loading branch information
Byron committed Feb 16, 2023
1 parent 134d70d commit 1ee81ad
Show file tree
Hide file tree
Showing 94 changed files with 1,037 additions and 1,037 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ jobs:
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
- run: set +x; for name in gix-diff git-pack; do (cd $name && cargo build --features wasm --target ${{ matrix.target }}); done
- run: set +x; for name in gix-diff gix-pack; do (cd $name && cargo build --features wasm --target ${{ matrix.target }}); done
name: crates with 'wasm' feature
- run: cd git-pack && cargo build --all-features --target ${{ matrix.target }}
name: git-pack with all features (including wasm)
- run: cd gix-pack && cargo build --all-features --target ${{ matrix.target }}
name: gix-pack with all features (including wasm)
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -701,7 +701,7 @@ which usually are `Clone` too as they are passed by immutable reference (which i
* **[#287](https://github.com/Byron/gitoxide/issues/287)**
- share and pass cli arguments for pack verification ([`db43e47`](https://github.com/Byron/gitoxide/commit/db43e47fc0a43ef45824ac1c9426c1889bdb13a3))
- Very rough version of repository verification ([`80a4a7a`](https://github.com/Byron/gitoxide/commit/80a4a7add688d16376b9bf2ed7f1c7f655b7c912))
- Adjustments to deal with changes to git-pack/gix-odb ([`fcf8fde`](https://github.com/Byron/gitoxide/commit/fcf8fde7272974a70df808bd7ac03e925b7e39a8))
- Adjustments to deal with changes to gix-pack/gix-odb ([`fcf8fde`](https://github.com/Byron/gitoxide/commit/fcf8fde7272974a70df808bd7ac03e925b7e39a8))
* **[#289](https://github.com/Byron/gitoxide/issues/289)**
- 'pack' with its own sub-commands ([`fb64af4`](https://github.com/Byron/gitoxide/commit/fb64af4d747960bfa40ec23051ecb03ea8ec5d83))
- 'remote' with its own sub-commands ([`8677f7e`](https://github.com/Byron/gitoxide/commit/8677f7edd516ea54ec652a4a59cb220422036b90))
Expand Down
94 changes: 47 additions & 47 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ document-features = { version = "0.2.0", optional = true }
[profile.dev.package]
gix-object = { opt-level = 3 }
gix-ref = { opt-level = 3 }
#git-pack = { opt-level = 3 }
#gix-pack = { opt-level = 3 }
gix-hash = { opt-level = 3 }
gix-actor = { opt-level = 3 }
gix-config = { opt-level = 3 }
Expand Down Expand Up @@ -164,7 +164,7 @@ members = [
"gix-transport",
"gix-credentials",
"gix-protocol",
"git-pack",
"gix-pack",
"gix-odb",
"gix-tempfile",
"gix-lock",
Expand All @@ -183,7 +183,7 @@ members = [

"gix-revision/tests",
"gix-diff/tests",
"git-pack/tests",
"gix-pack/tests",
"gix-index/tests",
"gix-ref/tests",
"gix-config/tests",
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ check: ## Build all code in suitable configurations
cd gix-worktree && cargo check --features serde1
cd gix-actor && cargo check --features serde1
cd gix-date && cargo check --features serde1
cd git-pack && cargo check --features serde1 \
cd gix-pack && cargo check --features serde1 \
&& cargo check --features pack-cache-lru-static \
&& cargo check --features pack-cache-lru-dynamic \
&& cargo check --features object-cache-dynamic \
Expand Down Expand Up @@ -141,7 +141,7 @@ unit-tests: ## run all unit tests
cd gix-ref/tests && cargo test --all-features
cd gix-odb && cargo test && cargo test --all-features
cd gix-object && cargo test && cargo test --features verbose-object-parsing-errors
cd git-pack/tests && cargo test --features internal-testing-to-avoid-being-run-by-cargo-test-all \
cd gix-pack/tests && cargo test --features internal-testing-to-avoid-being-run-by-cargo-test-all \
&& cargo test --features "internal-testing-gix-features-parallel"
cd gix-index/tests && cargo test --features internal-testing-to-avoid-being-run-by-cargo-test-all \
&& cargo test --features "internal-testing-gix-features-parallel"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ is usable to some extent.
* [gix-packetline](https://github.com/Byron/gitoxide/blob/main/crate-status.md#gix-packetline)
* [gix-transport](https://github.com/Byron/gitoxide/blob/main/crate-status.md#gix-transport)
* [gix-protocol](https://github.com/Byron/gitoxide/blob/main/crate-status.md#gix-protocol)
* [git-pack](https://github.com/Byron/gitoxide/blob/main/crate-status.md#git-pack)
* [gix-pack](https://github.com/Byron/gitoxide/blob/main/crate-status.md#gix-pack)
* [gix-odb](https://github.com/Byron/gitoxide/blob/main/crate-status.md#gix-odb)
* [gix-commitgraph](https://github.com/Byron/gitoxide/blob/main/crate-status.md#gix-commitgraph)
* [gix-diff](https://github.com/Byron/gitoxide/blob/main/crate-status.md#gix-diff)
Expand Down
2 changes: 1 addition & 1 deletion SHORTCOMINGS.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ This file is for tracking features that are less well implemented or less powerf
* This can be fixed by making response parsing.
* Note that this does not affect cloning, which works fine.

### `git-pack`
### `gix-pack`
* **Packfiles use memory maps**
* Even though they are comfortable to use and fast, they squelch IO errors.
* _potential remedy_: We could generalize the Pack to make it possible to work on in-memory buffers directly. That way, one
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.
│ │ │ gix-odb │ │ gix-diff │ │ │ │
│ │ └─────────────┘ └─────────────┘ │ │
│ │ ┌─────────────┐ ┌─────────────┐ │ │ │
│ │ │gix-traverse │ │ git-pack │ │◀ ─ ┼ ─
│ │ │gix-traverse │ │ gix-pack │ │◀ ─ ┼ ─
│ │ └─────────────┘ └─────────────┘ │ │
│ │ ┌ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ┐ │ │
│ │ …many more… │ │
Expand Down

0 comments on commit 1ee81ad

Please sign in to comment.