Skip to content

Commit a30a5da

Browse files
committed
empty git-mailmap crate (#366)
1 parent 42aae32 commit a30a5da

File tree

7 files changed

+37
-0
lines changed

7 files changed

+37
-0
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,7 @@ members = [
142142
"git-worktree",
143143
"git-revision",
144144
"git-packetline",
145+
"git-mailmap",
145146
"git-submodule",
146147
"git-transport",
147148
"git-protocol",

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@ Follow linked crate name for detailed status. Please note that all crates follow
108108
* [git-attributes](https://github.com/Byron/gitoxide/blob/main/crate-status.md#git-attributes)
109109
* [git-quote](https://github.com/Byron/gitoxide/blob/main/crate-status.md#git-quote)
110110
* **idea**
111+
* [git-mailmap](https://github.com/Byron/gitoxide/blob/main/crate-status.md#git-mailmap)
111112
* [git-pathspec](https://github.com/Byron/gitoxide/blob/main/crate-status.md#git-pathspec)
112113
* [git-subomdule](https://github.com/Byron/gitoxide/blob/main/crate-status.md#git-submodule)
113114
* [git-tui](https://github.com/Byron/gitoxide/blob/main/crate-status.md#git-tui)

crate-status.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -220,6 +220,11 @@ Check out the [performance discussion][git-traverse-performance] as well.
220220
* **ansi-c**
221221
* [x] quote
222222
* [ ] unquote
223+
*
224+
### git-mailmap
225+
226+
* [ ] parsing
227+
* [ ] lookup and mapping of author names
223228

224229
### git-pathspec
225230

git-mailmap/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## Unreleased
9+
10+
An empty crate without any content to reserve the name for the gitoxide project.

git-mailmap/Cargo.toml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
[package]
2+
name = "git-mailmap"
3+
version = "0.0.0"
4+
repository = "https://github.com/Byron/gitoxide"
5+
license = "MIT/Apache-2.0"
6+
description = "A WIP crate of the gitoxide project for parsing mailmap files"
7+
authors = ["Sebastian Thiel <sebastian.thiel@icloud.com>"]
8+
edition = "2018"
9+
10+
[lib]
11+
doctest = false
12+
13+
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
14+
15+
[dependencies]

git-mailmap/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#![forbid(unsafe_code, rust_2018_idioms)]

0 commit comments

Comments
 (0)