Bumps the cargo group with 5 updates: | Package | From | To | | --- | --- | --- | | [cc](https://github.com/rust-lang/cc-rs) | `1.0.98` | `1.0.99` | | [clap](https://github.com/clap-rs/clap) | `4.5.4` | `4.5.7` | | [regex](https://github.com/rust-lang/regex) | `1.10.4` | `1.10.5` | | [regex-syntax](https://github.com/rust-lang/regex) | `0.8.3` | `0.8.4` | | [url](https://github.com/servo/rust-url) | `2.5.0` | `2.5.1` | Updates `cc` from 1.0.98 to 1.0.99 - [Release notes](https://github.com/rust-lang/cc-rs/releases) - [Commits](https://github.com/rust-lang/cc-rs/compare/1.0.98...1.0.99) Updates `clap` from 4.5.4 to 4.5.7 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.5.4...v4.5.7) Updates `regex` from 1.10.4 to 1.10.5 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.10.4...1.10.5) Updates `regex-syntax` from 0.8.3 to 0.8.4 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/regex-syntax-0.8.3...regex-syntax-0.8.4) Updates `url` from 2.5.0 to 2.5.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.5.0...v2.5.1) --- updated-dependencies: - dependency-name: cc dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: regex-syntax dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: url dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo ... Signed-off-by: dependabot[bot] <support@github.com>
72 lines
1.7 KiB
TOML
72 lines
1.7 KiB
TOML
[package]
|
|
name = "tree-sitter-cli"
|
|
version.workspace = true
|
|
description = "CLI tool for developing, testing, and using Tree-sitter parsers"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
readme = "README.md"
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
license.workspace = true
|
|
keywords.workspace = true
|
|
categories.workspace = true
|
|
|
|
[[bin]]
|
|
name = "tree-sitter"
|
|
path = "src/main.rs"
|
|
doc = false
|
|
|
|
[[bench]]
|
|
name = "benchmark"
|
|
harness = false
|
|
|
|
[features]
|
|
wasm = ["tree-sitter/wasm", "tree-sitter-loader/wasm"]
|
|
|
|
[dependencies]
|
|
anstyle.workspace = true
|
|
anyhow.workspace = true
|
|
clap.workspace = true
|
|
ctor.workspace = true
|
|
ctrlc.workspace = true
|
|
dirs.workspace = true
|
|
filetime.workspace = true
|
|
glob.workspace = true
|
|
heck.workspace = true
|
|
html-escape.workspace = true
|
|
indexmap.workspace = true
|
|
indoc.workspace = true
|
|
lazy_static.workspace = true
|
|
log.workspace = true
|
|
memchr.workspace = true
|
|
rand.workspace = true
|
|
regex.workspace = true
|
|
regex-syntax.workspace = true
|
|
rustc-hash.workspace = true
|
|
semver.workspace = true
|
|
serde.workspace = true
|
|
serde_derive.workspace = true
|
|
serde_json.workspace = true
|
|
similar.workspace = true
|
|
smallbitvec.workspace = true
|
|
tiny_http.workspace = true
|
|
walkdir.workspace = true
|
|
wasmparser.workspace = true
|
|
webbrowser.workspace = true
|
|
|
|
tree-sitter.workspace = true
|
|
tree-sitter-config.workspace = true
|
|
tree-sitter-highlight.workspace = true
|
|
tree-sitter-loader.workspace = true
|
|
tree-sitter-tags.workspace = true
|
|
|
|
[target."cfg(windows)".dependencies]
|
|
url = "2.5.1"
|
|
|
|
[dev-dependencies]
|
|
tree_sitter_proc_macro = { path = "src/tests/proc_macro", package = "tree-sitter-tests-proc-macro" }
|
|
|
|
tempfile.workspace = true
|
|
pretty_assertions.workspace = true
|
|
unindent.workspace = true
|