annotator 0.1.1

A simple CLI tool to automatically annotate Java source code files.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[package]
name = "annotator"
version = "0.1.1"
edition = "2024"
authors = ["vtramo <vv.tramo@gmail.com>"]
description = "A simple CLI tool to automatically annotate Java source code files."
repository = "https://github.com/vtramo/java-annotator"
readme = "README.md"
keywords = ["java"]
categories = ["command-line-utilities"]
license = "MIT"

[dependencies]
tree-sitter = "0.25.10"
tree-sitter-java = "0.23"
clap = { version = "4.4", features = ["derive"] }
anyhow = "1.0.100"