Skip to content

Commit 823795a

Browse files
committed
adjust to renaming for git-protocol to gix-protocol
1 parent 9a35a90 commit 823795a

File tree

83 files changed

+872
-872
lines changed

Some content is hidden

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

83 files changed

+872
-872
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -791,7 +791,7 @@ A first usable version of `gix` to make using `gitoxide` from your applications
791791
### Feature list
792792

793793
* `gix` as hub crate for application development with focus on usability without sacrificing any knob to tune performance.
794-
* opt-in `async` for `gix-packetline`, `gix-transport` and `git-protocol` for fully async git clients, along with the `light-async` feature toggle to build a `gix pack-receive` with an async client instead of a blocking one.
794+
* opt-in `async` for `gix-packetline`, `gix-transport` and `gix-protocol` for fully async git clients, along with the `light-async` feature toggle to build a `gix pack-receive` with an async client instead of a blocking one.
795795
* Statistics for `gix pack-create` with the `-s/--statistics` flag to have data indicating the cost of the operation. Currently it's doing a lot of work that has to be avoided in order to be useable in production and the numbers underline that. Future iterations will cause key metrics to go down.
796796
* Packs are now reproducible by default, which means that the same tip will always generate a pack with the same hash. This may be a desirable property for some kinds of packs, but not for others which is why it can be turned off for a considerable speed boost.
797797
* `gix-tempfile` crate

Cargo.lock

+28-28
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ members = [
163163
"gix-submodule",
164164
"gix-transport",
165165
"gix-credentials",
166-
"git-protocol",
166+
"gix-protocol",
167167
"git-pack",
168168
"git-odb",
169169
"gix-tempfile",

Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -120,10 +120,10 @@ check: ## Build all code in suitable configurations
120120
&& cargo check --features http-client-curl \
121121
&& cargo check --features http-client-reqwest
122122
cd gix-transport && if cargo check --all-features 2>/dev/null; then false; else true; fi
123-
cd git-protocol && cargo check \
123+
cd gix-protocol && cargo check \
124124
&& cargo check --features blocking-client \
125125
&& cargo check --features async-client
126-
cd git-protocol && if cargo check --all-features 2>/dev/null; then false; else true; fi
126+
cd gix-protocol && if cargo check --all-features 2>/dev/null; then false; else true; fi
127127
cd gix && cargo check --no-default-features --features async-network-client \
128128
&& cargo check --no-default-features --features async-network-client-async-std \
129129
&& cargo check --no-default-features --features blocking-network-client \
@@ -154,7 +154,7 @@ unit-tests: ## run all unit tests
154154
&& cargo test --features http-client-curl,maybe-async/is_sync \
155155
&& cargo test --features http-client-reqwest,maybe-async/is_sync \
156156
&& cargo test --features async-client
157-
cd git-protocol && cargo test --features blocking-client \
157+
cd gix-protocol && cargo test --features blocking-client \
158158
&& cargo test --features async-client \
159159
&& cargo test
160160
cd gix && cargo test \

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ is usable to some extent.
6262
* [gix-url](https://github.com/Byron/gitoxide/blob/main/crate-status.md#gix-url)
6363
* [gix-packetline](https://github.com/Byron/gitoxide/blob/main/crate-status.md#gix-packetline)
6464
* [gix-transport](https://github.com/Byron/gitoxide/blob/main/crate-status.md#gix-transport)
65-
* [git-protocol](https://github.com/Byron/gitoxide/blob/main/crate-status.md#git-protocol)
65+
* [gix-protocol](https://github.com/Byron/gitoxide/blob/main/crate-status.md#gix-protocol)
6666
* [git-pack](https://github.com/Byron/gitoxide/blob/main/crate-status.md#git-pack)
6767
* [git-odb](https://github.com/Byron/gitoxide/blob/main/crate-status.md#git-odb)
6868
* [git-commitgraph](https://github.com/Byron/gitoxide/blob/main/crate-status.md#git-commitgraph)

SHORTCOMINGS.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This file is for tracking features that are less well implemented or less powerf
66

77
* The `link` extension can be read, but won't be written. This effectively disables the use of a split index once a mutating operation is run on it with `gitixode`.
88

9-
### git-protocol
9+
### gix-protocol
1010
* **fetches using protocol V1 and stateful connections, i.e. ssh, git, file, may hang**
1111
* This can be fixed by making response parsing.
1212
* Note that this does not affect cloning, which works fine.

0 commit comments

Comments
 (0)