Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 18 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,34 @@
name = "tree-sitter-vimdoc"
description = "Tree-sitter grammar for Vim help files"
version = "4.0.2"
authors = ["Justin M. Keyes <justinkz@gmail.com>"]
license = "Apache-2.0"
keywords = ["incremental", "parsing", "neovim", "vimdoc"]
categories = ["parsing", "text-editors"]
readme = "README.md"
keywords = ["incremental", "parsing", "tree-sitter", "vimdoc"]
categories = ["parser-implementations", "parsing", "text-editors"]
repository = "https://github.com/neovim/tree-sitter-vimdoc"
authors = ["Thomas Vigouroux <tomvig38@gmail.com>"]
edition = "2021"
autoexamples = false

build = "bindings/rust/build.rs"
include = ["bindings/rust/*", "grammar.js", "queries/*", "src/*"]
include = [
"bindings/rust/*",
"grammar.js",
"queries/*",
"src/*",
"tree-sitter.json",
"/LICENSE",
]

[lib]
path = "bindings/rust/lib.rs"

[dependencies]
tree-sitter = ">=0.25.0"
tree-sitter = "0.25.10"
tree-sitter-language = "0.1"

[build-dependencies]
cc = "^1.0.89"
cc = "1.2"

[dev-dependencies]
tree-sitter = "0.25.10"
64 changes: 29 additions & 35 deletions Package.swift

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,3 +93,12 @@ Steps to perform a release: https://tree-sitter.github.io/tree-sitter/creating-p
git push
```
6. Tag and release: https://github.com/neovim/tree-sitter-vimdoc/releases/new

### Publis to crates.io

```
cargo publish --dry-run
cargo login
cargo publish
```

127 changes: 52 additions & 75 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading