Make the URL to the documentation of the various crates known so that it will be easier to click through to it from a crates.io search [0]. [0] https://doc.rust-lang.org/cargo/reference/manifest.html#the-documentation-field
20 lines
535 B
TOML
20 lines
535 B
TOML
[package]
|
|
name = "tree-sitter-language"
|
|
description = "The tree-sitter Language type, used by the library and by language implementations"
|
|
version = "0.1.4"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
rust-version = "1.76"
|
|
readme = "README.md"
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
documentation = "https://docs.rs/tree-sitter-language"
|
|
license.workspace = true
|
|
keywords.workspace = true
|
|
categories = ["api-bindings", "development-tools::ffi", "parsing"]
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
path = "src/language.rs"
|