From 4578e587942166aeb32f44e49f242d34cd959bbe Mon Sep 17 00:00:00 2001 From: Andrew Hlynskyi Date: Wed, 23 Jun 2021 00:59:50 +0300 Subject: [PATCH] fix(cli): close #1032 - fix repository template url generation in cargo.toml --- cli/src/generate/templates/cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/src/generate/templates/cargo.toml b/cli/src/generate/templates/cargo.toml index 8a99da9e..aaa6118a 100644 --- a/cli/src/generate/templates/cargo.toml +++ b/cli/src/generate/templates/cargo.toml @@ -4,7 +4,7 @@ description = "PARSER_NAME grammar for the tree-sitter parsing library" version = "0.0.1" keywords = ["incremental", "parsing", "PARSER_NAME"] categories = ["parsing", "text-editors"] -repository = "https://github.com/tree-sitter/tree-sitter-javascript" +repository = "https://github.com/tree-sitter/tree-sitter-PARSER_NAME" edition = "2018" license = "MIT"