diff --git a/ramhorns-derive/Cargo.toml b/ramhorns-derive/Cargo.toml index d7d7894..48607d1 100644 --- a/ramhorns-derive/Cargo.toml +++ b/ramhorns-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ramhorns-derive" -version = "1.0.0" +version = "1.0.1" authors = ["Maciej Hirsz "] license = "MPL-2.0" edition = "2018" diff --git a/ramhorns/Cargo.toml b/ramhorns/Cargo.toml index ff2b7f1..1bc2747 100644 --- a/ramhorns/Cargo.toml +++ b/ramhorns/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ramhorns" -version = "1.0.0" +version = "1.0.1" authors = ["Maciej Hirsz "] license = "MPL-2.0" edition = "2018" @@ -15,8 +15,8 @@ categories = ["template-engine"] arrayvec = "0.7.4" beef = "0.5.2" fnv = "1.0" -pulldown-cmark = { version = "0.12", default_features = false, features = ["html"], optional = true } -ramhorns-derive = { version = "1.0.0", path = "../ramhorns-derive", optional = true } +pulldown-cmark = { version = "0.12", default-features = false, features = ["html"], optional = true } +ramhorns-derive = { version = "1.0.1", path = "../ramhorns-derive", optional = true } logos = "0.14.0" [dev-dependencies] diff --git a/tests/benches/main.rs b/tests/benches/main.rs index 06c2f86..beae3fd 100644 --- a/tests/benches/main.rs +++ b/tests/benches/main.rs @@ -29,7 +29,7 @@ const POST: Post = Post { body: "This is a really simple test of the rendering!", }; const RENDERED_BYTES: u64 = - { (POST.title.len() + POST.body.len() + "

".len()) as u64 }; + (POST.title.len() + POST.body.len() + "

".len()) as u64; #[derive(Content, Serialize, Template)] #[template(