diff options
author | Aleksey Kladov <[email protected]> | 2018-10-16 18:28:43 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2018-10-16 18:31:30 +0100 |
commit | 514aa3cf853c3c4beef8f827c12328d626f977de (patch) | |
tree | 2a10336c3825ad821960c5169b78df17f7bd5f5c /crates/teraron/Cargo.toml | |
parent | 1216878f7be20dd0e652fb8cdc395009fdcfae07 (diff) |
extract teraron
Diffstat (limited to 'crates/teraron/Cargo.toml')
-rw-r--r-- | crates/teraron/Cargo.toml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/crates/teraron/Cargo.toml b/crates/teraron/Cargo.toml new file mode 100644 index 000000000..7ce9f1aa8 --- /dev/null +++ b/crates/teraron/Cargo.toml | |||
@@ -0,0 +1,13 @@ | |||
1 | [package] | ||
2 | name = "teraron" | ||
3 | version = "0.0.1" | ||
4 | authors = ["Aleksey Kladov <[email protected]>"] | ||
5 | repository = "https://github.com/rust-analyzer/teraron" | ||
6 | description = "Genrate Rust code from a .tera template and a .ron data" | ||
7 | license = "MIT OR Apache-2.0" | ||
8 | |||
9 | [dependencies] | ||
10 | failure = "0.1.2" | ||
11 | tera = "0.11.18" | ||
12 | ron = "0.4.0" | ||
13 | heck = "0.3.0" | ||