Bump version (0.0.2 => 0.0.3)

This commit is contained in:
Kogia-sima 2020-06-07 19:13:59 +09:00
parent e12e42e15a
commit 69d7d6c39c
9 changed files with 23 additions and 23 deletions

20
Cargo.lock generated
View File

@ -431,12 +431,12 @@ dependencies = [
[[package]]
name = "examples"
version = "0.0.1"
version = "0.0.3"
dependencies = [
"actix-rt 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
"actix-web 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
"sailfish 0.0.2",
"sailfish-macros 0.0.1",
"sailfish 0.0.3",
"sailfish-macros 0.0.3",
]
[[package]]
@ -671,11 +671,11 @@ dependencies = [
[[package]]
name = "integration-tests"
version = "0.0.1"
version = "0.0.3"
dependencies = [
"pretty_assertions 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
"sailfish 0.0.2",
"sailfish-macros 0.0.1",
"sailfish 0.0.3",
"sailfish-macros 0.0.3",
"trybuild 1.0.28 (registry+https://github.com/rust-lang/crates.io-index)",
]
@ -1050,7 +1050,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "sailfish"
version = "0.0.2"
version = "0.0.3"
dependencies = [
"itoa 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
"ryu 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)",
@ -1058,7 +1058,7 @@ dependencies = [
[[package]]
name = "sailfish-compiler"
version = "0.0.1"
version = "0.0.3"
dependencies = [
"memchr 2.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
"pretty_assertions 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
@ -1069,10 +1069,10 @@ dependencies = [
[[package]]
name = "sailfish-macros"
version = "0.0.1"
version = "0.0.3"
dependencies = [
"proc-macro2 1.0.18 (registry+https://github.com/rust-lang/crates.io-index)",
"sailfish-compiler 0.0.1",
"sailfish-compiler 0.0.3",
]
[[package]]

View File

@ -31,8 +31,8 @@ Dependencies:
```toml
[dependencies]
sailfish = "0.0.2"
sailfish-macros = "0.0.1"
sailfish = "0.0.3"
sailfish-macros = "0.0.3"
```
Template file (templates/hello.stpl):

8
benches/Cargo.lock generated
View File

@ -159,7 +159,7 @@ checksum = "53d1ccbaf7d9ec9537465a97bf19edc1a4e158ecb49fc16178202238c569cc42"
[[package]]
name = "benches"
version = "0.0.1"
version = "0.0.3"
dependencies = [
"askama",
"criterion",
@ -1126,7 +1126,7 @@ checksum = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072"
[[package]]
name = "sailfish"
version = "0.0.2"
version = "0.0.3"
dependencies = [
"itoa",
"ryu",
@ -1134,7 +1134,7 @@ dependencies = [
[[package]]
name = "sailfish-compiler"
version = "0.0.1"
version = "0.0.3"
dependencies = [
"memchr",
"proc-macro2",
@ -1144,7 +1144,7 @@ dependencies = [
[[package]]
name = "sailfish-macros"
version = "0.0.1"
version = "0.0.3"
dependencies = [
"proc-macro2",
"sailfish-compiler",

View File

@ -1,6 +1,6 @@
[package]
name = "benches"
version = "0.0.1"
version = "0.0.3"
authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>", "Ryohei Machida <orcinus4627@gmail.com>"]
edition = "2018"
publish = false

View File

@ -1,6 +1,6 @@
[package]
name = "examples"
version = "0.0.1"
version = "0.0.3"
authors = ["Ryohei Machida <orcinus4627@gmail.com>"]
edition = "2018"
publish = false

View File

@ -1,6 +1,6 @@
[package]
name = "integration-tests"
version = "0.0.1"
version = "0.0.3"
authors = ["Kogia-sima <orcinus4627@gmail.com>"]
edition = "2018"
publish = false

View File

@ -1,6 +1,6 @@
[package]
name = "sailfish-compiler"
version = "0.0.1"
version = "0.0.3"
authors = ["Ryohei Machida <orcinus4627@gmail.com>"]
description = "Really fast, intuitive template engine for Rust"
homepage = "https://github.com/Kogia-sima/sailfish"

View File

@ -1,6 +1,6 @@
[package]
name = "sailfish-macros"
version = "0.0.1"
version = "0.0.3"
authors = ["Ryohei Machida <orcinus4627@gmail.com>"]
description = "Really fast, intuitive template engine for Rust"
homepage = "https://github.com/Kogia-sima/sailfish"
@ -21,5 +21,5 @@ test = false
doctest = false
[dependencies]
sailfish-compiler = { path = "../sailfish-compiler", version = "0.0.1", features = ["procmacro"] }
sailfish-compiler = { path = "../sailfish-compiler", version = "0.0.3", features = ["procmacro"] }
proc-macro2 = "1.0.17"

View File

@ -1,6 +1,6 @@
[package]
name = "sailfish"
version = "0.0.2"
version = "0.0.3"
authors = ["Ryohei Machida <orcinus4627@gmail.com>"]
description = "Really fast, intuitive template engine for Rust"
homepage = "https://github.com/Kogia-sima/sailfish"