Merge commit '9681e6c'

This commit is contained in:
Kogia-sima 2020-06-18 00:47:44 +09:00
commit 6c9ad14e90
3 changed files with 12 additions and 11 deletions

20
Cargo.lock generated
View File

@ -429,16 +429,6 @@ dependencies = [
"syn 1.0.30 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "examples"
version = "0.1.0"
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.1.0",
"sailfish-macros 0.1.0",
]
[[package]]
name = "failure"
version = "0.1.8"
@ -1067,6 +1057,16 @@ dependencies = [
"yaml-rust 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "sailfish-examples"
version = "0.1.0"
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.1.0",
"sailfish-macros 0.1.0",
]
[[package]]
name = "sailfish-macros"
version = "0.1.0"

View File

@ -22,6 +22,7 @@ Simple, small, and extremely fast template engine for Rust
- Template rendering is always type-safe because templates are statically compiled.
- Syntax highlighting support ([vscode](./syntax/vscode), [vim](./syntax/vim))
- Automatically re-compile sources when template file is updated.
- Works on Rust 1.42 or later
## 🐟 Example

View File

@ -1,5 +1,5 @@
[package]
name = "examples"
name = "sailfish-examples"
version = "0.1.0"
authors = ["Ryohei Machida <orcinus4627@gmail.com>"]
edition = "2018"