Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
bryn committed May 20, 2022
1 parent a3a6a6d commit 6b7bc96
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 6 deletions.
29 changes: 26 additions & 3 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions apollo-router-scaffold/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "apollo-router-scaffold"
version = "0.9.2"
version = "0.9.1"
authors = ["Apollo Graph, Inc. <packages@apollographql.com>"]
edition = "2021"
license = "Elastic-2.0"
Expand All @@ -9,7 +9,7 @@ publish = false
[dependencies]
clap = { version = "3.1.8", features = ["derive"] }
anyhow = "1.0.56"
cargo-scaffold = "0.6.1"
cargo-scaffold = {path="../../cargo-scaffold"}
regex = "1"
str_inflector = "0.12.0"
toml = "0.5.8"
2 changes: 1 addition & 1 deletion apollo-router-scaffold/src/plugin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ fn create_plugin(name: &str) -> Result<()> {
.template_path(PathBuf::from(
"https://github.com/Cosmian/mpc_rust_template.git",
))
.template_commit(std::env!("CARGO_PKG_VERSION"))
.template_commit(format!("v{}", std::env!("CARGO_PKG_VERSION")))
.target_dir(".")
.project_name(name)
.append(true)
Expand Down

0 comments on commit 6b7bc96

Please sign in to comment.