From cb110641ac27823327b8ea4a744db0895de6b9f6 Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Fri, 15 Feb 2019 11:26:59 -0200 Subject: [PATCH] Renamed the template service --- template/Cargo.toml | 7 ------- templater/Cargo.toml | 7 +++++++ {template => templater}/src/main.rs | 0 3 files changed, 7 insertions(+), 7 deletions(-) delete mode 100644 template/Cargo.toml create mode 100644 templater/Cargo.toml rename {template => templater}/src/main.rs (100%) diff --git a/template/Cargo.toml b/template/Cargo.toml deleted file mode 100644 index dddfc18..0000000 --- a/template/Cargo.toml +++ /dev/null @@ -1,7 +0,0 @@ -[package] -name = "template" -version = "0.1.0" -authors = ["Julio Biason "] -edition = "2018" - -[dependencies] diff --git a/templater/Cargo.toml b/templater/Cargo.toml new file mode 100644 index 0000000..eef3d63 --- /dev/null +++ b/templater/Cargo.toml @@ -0,0 +1,7 @@ +[package] +name = "templater" +version = "0.1.0" +authors = ["Julio Biason "] +edition = "2018" + +[dependencies] diff --git a/template/src/main.rs b/templater/src/main.rs similarity index 100% rename from template/src/main.rs rename to templater/src/main.rs