From b6ddbe86d37bb4d38e0814a3130878d0b6405ea9 Mon Sep 17 00:00:00 2001 From: Lennart Van Hirtum Date: Wed, 6 Nov 2024 13:08:25 +0100 Subject: [PATCH] Forgot to add tree-sitter-sus 0.1.0 --- Cargo.toml | 9 +++++---- sus-proc-macro/Cargo.toml | 11 ++++++----- 2 files changed, 11 insertions(+), 9 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3f4a101..f1bc40e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,9 +6,10 @@ authors = ["Lennart Van Hirtum "] edition = "2021" license = "GPL-3.0-or-later" repository = "https://github.com/pc2/sus-compiler" -keywords = ["sus", "fpga", "vlsi", "verilog", "hdl"] -categories = ["compilers", "text-processing"] +homepage = "https://github.com/pc2/sus-compiler" readme = "README.md" +keywords = ["sus", "fpga", "vlsi", "hdl", "verilog"] +categories = ["compilers", "text-processing"] rust-version = "1.78" [workspace] @@ -28,9 +29,9 @@ arrayvec = "0.7.6" # Tree sitter tree-sitter = "~0.22.2" -tree-sitter-sus = {version = "~0.0.2", path = "./tree-sitter-sus"} +tree-sitter-sus = {version = "~0.1.0", path = "./tree-sitter-sus"} -sus-proc-macro = {version = "~0.0.1", path = "./sus-proc-macro"} +sus-proc-macro = {version = "~0.1.0", path = "./sus-proc-macro"} # calyx-ir = {version = "0.6.1", optional = true} # calyx-opt = {version = "0.6.1", optional = true} diff --git a/sus-proc-macro/Cargo.toml b/sus-proc-macro/Cargo.toml index a232e6a..feae442 100644 --- a/sus-proc-macro/Cargo.toml +++ b/sus-proc-macro/Cargo.toml @@ -1,21 +1,22 @@ [package] name = "sus-proc-macro" description = "Proc-macros for use in the sus-compiler" -version = "0.0.1" +version = "0.1.0" authors = ["Lennart Van Hirtum "] edition = "2021" +license = "GPL-3.0-or-later" repository = "https://github.com/pc2/sus-compiler" homepage = "https://github.com/pc2/sus-compiler" -license = "GPL-3.0-or-later" readme = "README.md" -keywords = ["proc-macro", "tree-sitter", "sus"] -categories = [] +keywords = ["sus", "fpga", "hdl", "proc-macro", "tree-sitter"] +categories = ["compilers", "text-processing"] +rust-version = "1.78" [dependencies] # Tree sitter tree-sitter = "~0.22.2" -tree-sitter-sus = {version = "~0.0.2", path = "../tree-sitter-sus"} +tree-sitter-sus = {version = "~0.1.0", path = "../tree-sitter-sus"} # proc_macro utils syn = "1.0"