diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2019-08-19 10:37:03 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2019-08-19 10:37:03 +0100 |
commit | 53241928e5866b5aa501710e59b264905beeca1a (patch) | |
tree | 2e1533cdefd25cda25f02711632ae8e206cc68f6 /crates/ra_tools/Cargo.toml | |
parent | 83413cc9ef73d578f2e42c21f7aa85ef296be8c0 (diff) | |
parent | 038975b348b03dd3063d14cabd30fa71b010baea (diff) |
Merge #1697
1697: Use quote instead of tera for boilerplate generation r=matklad a=matklad
Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'crates/ra_tools/Cargo.toml')
-rw-r--r-- | crates/ra_tools/Cargo.toml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/crates/ra_tools/Cargo.toml b/crates/ra_tools/Cargo.toml index 9c5430992..4c9aa1cc3 100644 --- a/crates/ra_tools/Cargo.toml +++ b/crates/ra_tools/Cargo.toml | |||
@@ -6,7 +6,11 @@ authors = ["rust-analyzer developers"] | |||
6 | publish = false | 6 | publish = false |
7 | 7 | ||
8 | [dependencies] | 8 | [dependencies] |
9 | teraron = "0.1.0" | ||
10 | walkdir = "2.1.3" | 9 | walkdir = "2.1.3" |
11 | itertools = "0.8.0" | 10 | itertools = "0.8.0" |
12 | clap = "2.32.0" | 11 | clap = "2.32.0" |
12 | quote = "1.0.2" | ||
13 | proc-macro2 = "1.0.1" | ||
14 | ron = "0.5.1" | ||
15 | heck = "0.3.0" | ||
16 | serde = { version = "1.0.0", features = ["derive"] } | ||