Skip to content

Commit

Permalink
empty git-refspec crate for name reservation prior to implementation (
Browse files Browse the repository at this point in the history
  • Loading branch information
Byron committed Aug 5, 2022
1 parent a6d79e3 commit 871a3c0
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Expand Up @@ -162,6 +162,7 @@ members = [
"git-lock",
"git-attributes",
"git-pathspec",
"git-refspec",
"git-path",
"git-repository",
"gitoxide-core",
Expand Down
20 changes: 20 additions & 0 deletions git-refspec/Cargo.toml
@@ -0,0 +1,20 @@
[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"

[lib]
doctest = false

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
bstr = { version = "0.2.13", default-features = false, features = ["std"]}
thiserror = "1.0.26"

[dev-dependencies]
git-testtools = { path = "../tests/tools" }
3 changes: 3 additions & 0 deletions git-refspec/src/lib.rs
@@ -0,0 +1,3 @@
//! Parse [ref specs]() and represent them.
#![forbid(unsafe_code, rust_2018_idioms)]
#![deny(missing_docs)]
1 change: 1 addition & 0 deletions git-refspec/tests/refspec.rs
@@ -0,0 +1 @@

0 comments on commit 871a3c0

Please sign in to comment.