diff --git a/Cargo.lock b/Cargo.lock index 4377156..8c477f0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -141,7 +141,7 @@ dependencies = [ [[package]] name = "cargo-swift" -version = "0.5.0-alpha02" +version = "0.5.0-beta01" dependencies = [ "anyhow", "askama", diff --git a/src/templating.rs b/src/templating.rs index 2472500..ff148a4 100644 --- a/src/templating.rs +++ b/src/templating.rs @@ -1,7 +1,7 @@ use askama::Template; #[derive(Template)] -#[template(path = "Cargo.toml", escape = "none")] +#[template(path = "template.toml", escape = "none")] pub(crate) struct CargoToml<'a> { pub(crate) crate_name: &'a str, pub(crate) namespace: &'a str, diff --git a/templates/Cargo.toml b/templates/template.toml similarity index 100% rename from templates/Cargo.toml rename to templates/template.toml