We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
gingembre
1 parent 5b209e4 commit 0c940eeCopy full SHA for 0c940ee
2 files changed
crates/git-template/Cargo.toml
@@ -9,6 +9,7 @@ description = "Create new Git repositories using other repositories as templates
9
[dependencies]
10
clap = { workspace = true }
11
clap_mangen = { workspace = true }
12
+gingembre = { git = "https://github.com/bearcove/dodeca", version = "0.6.1" }
13
git-vendor = { version = "0.2.0", path = "../../../git-vendor/crates/git-vendor" }
14
git2 = { workspace = true }
15
crates/git-template/src/lib.rs
@@ -1 +1,14 @@
1
//! Template repository support for Git.
2
+
3
+use git_vendor::Vendor as _;
4
5
+use git2::Error;
6
7
+type Result<T = ()> = std::result::Result<T, Error>;
8
+/// Temp.
+pub trait TemplateRepository {
+ fn from_template() -> Result {
+ Ok(())
+ }
+}
0 commit comments