-
-
Notifications
You must be signed in to change notification settings - Fork 311
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into write-index-v2
- Loading branch information
Showing
59 changed files
with
1,794 additions
and
86 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## 0.0.0 (2022-08-05) | ||
|
||
Initial release for name reservation. | ||
|
||
### Commit Statistics | ||
|
||
<csr-read-only-do-not-edit/> | ||
|
||
- 2 commits contributed to the release. | ||
- 0 commits where understood as [conventional](https://www.conventionalcommits.org). | ||
- 1 unique issue was worked on: [#450](https://github.com/Byron/gitoxide/issues/450) | ||
|
||
### Commit Details | ||
|
||
<csr-read-only-do-not-edit/> | ||
|
||
<details><summary>view details</summary> | ||
|
||
* **[#450](https://github.com/Byron/gitoxide/issues/450)** | ||
- prepare git-refspec changelog prior to release ([`3383408`](https://github.com/Byron/gitoxide/commit/3383408ce22ca9c7502ad2d1fab51cf12dc5ee72)) | ||
- empty `git-refspec` crate for name reservation prior to implementation ([`871a3c0`](https://github.com/Byron/gitoxide/commit/871a3c054d4fe6c1e92b6f2e260b19463404509f)) | ||
</details> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
[package] | ||
name = "git-refspec" | ||
version = "0.0.0" | ||
repository = "https://github.com/Byron/gitoxide" | ||
license = "MIT/Apache-2.0" | ||
description = "A WIP crate of the gitoxide project for parsing and representing refspecs" | ||
authors = ["Sebastian Thiel <sebastian.thiel@icloud.com>"] | ||
edition = "2018" | ||
include = ["src/**/*", "CHANGELOG.md", "README.md"] | ||
|
||
[lib] | ||
doctest = false | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
git-revision = { version = "^0.3.0", path = "../git-revision" } | ||
git-validate = { version = "^0.5.4", path = "../git-validate" } | ||
git-hash = { version = "^0.9.6", path = "../git-hash" } | ||
|
||
bstr = { version = "0.2.13", default-features = false, features = ["std"]} | ||
thiserror = "1.0.26" | ||
smallvec = "1.9.0" | ||
|
||
[dev-dependencies] | ||
git-testtools = { path = "../tests/tools" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# `git-refspec` | ||
|
||
### Testing | ||
|
||
#### Fuzzing | ||
|
||
`cargo fuzz` is used for fuzzing, installable with `cargo install cargo-fuzz`. | ||
|
||
Targets can be listed with `cargo fuzz list` and executed via `cargo +nightly fuzz run <target>`, | ||
where `<target>` can be `parse` for example. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
target | ||
corpus | ||
artifacts |
Oops, something went wrong.