Skip to content

Commit 871a3c0

Browse files
committed
empty git-refspec crate for name reservation prior to implementation (#450)
1 parent a6d79e3 commit 871a3c0

File tree

5 files changed

+34
-0
lines changed

5 files changed

+34
-0
lines changed

Cargo.lock

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

Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,7 @@ members = [
162162
"git-lock",
163163
"git-attributes",
164164
"git-pathspec",
165+
"git-refspec",
165166
"git-path",
166167
"git-repository",
167168
"gitoxide-core",

git-refspec/Cargo.toml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
[package]
2+
name = "git-refspec"
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 and representing refspecs"
7+
authors = ["Sebastian Thiel <[email protected]>"]
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]
16+
bstr = { version = "0.2.13", default-features = false, features = ["std"]}
17+
thiserror = "1.0.26"
18+
19+
[dev-dependencies]
20+
git-testtools = { path = "../tests/tools" }

git-refspec/src/lib.rs

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
//! Parse [ref specs]() and represent them.
2+
#![forbid(unsafe_code, rust_2018_idioms)]
3+
#![deny(missing_docs)]

git-refspec/tests/refspec.rs

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

0 commit comments

Comments
 (0)