Skip to content

Commit 2cc65bb

Browse files
committedDec 22, 2024
finalize gix-shallow crate
1 parent 3af94f9 commit 2cc65bb

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed
 

‎README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -135,9 +135,10 @@ is usable to some extent.
135135
* [gix-worktree-state](https://github.com/GitoxideLabs/gitoxide/blob/main/crate-status.md#gix-worktree-state)
136136
* [gix-date](https://github.com/GitoxideLabs/gitoxide/blob/main/crate-status.md#gix-date)
137137
* [gix-dir](https://github.com/GitoxideLabs/gitoxide/blob/main/crate-status.md#gix-dir)
138+
* [gix-merge](https://github.com/GitoxideLabs/gitoxide/blob/main/crate-status.md#gix-merge)
139+
* [gix-shallow](https://github.com/GitoxideLabs/gitoxide/blob/main/crate-status.md#gix-shallow)
138140
* `gitoxide-core`
139141
* **very early** _(possibly without any documentation and many rough edges)_
140-
* [gix-merge](https://github.com/GitoxideLabs/gitoxide/blob/main/crate-status.md#gix-merge)
141142
* **idea** _(just a name placeholder)_
142143
* [gix-note](https://github.com/GitoxideLabs/gitoxide/blob/main/crate-status.md#gix-note)
143144
* [gix-fetchhead](https://github.com/GitoxideLabs/gitoxide/blob/main/crate-status.md#gix-fetchhead)

‎crate-status.md

+4
Original file line numberDiff line numberDiff line change
@@ -375,6 +375,10 @@ Check out the [performance discussion][gix-traverse-performance] as well.
375375

376376
[gix-traverse-performance]: https://github.com/GitoxideLabs/gitoxide/discussions/76
377377

378+
### gix-shallow
379+
380+
A utility crate with types and functionality related to shallow-file handling.
381+
378382
### gix-url
379383
* As documented here: https://www.git-scm.com/docs/git-clone#_git_urls
380384
* **parse**

‎gix-shallow/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
//! [Read](read()) and [write](write()) shallow files, while performing typical operations on them.
22
#![deny(missing_docs, rust_2018_idioms)]
3+
#![forbid(unsafe_code)]
34

45
/// An instruction on how to
56
#[derive(PartialEq, Eq, Debug, Hash, Ord, PartialOrd, Clone, Copy)]

0 commit comments

Comments
 (0)
Please sign in to comment.