Bumps the cargo group with 8 updates in the / directory: | Package | From | To | | --- | --- | --- | | [cc](https://github.com/rust-lang/cc-rs) | `1.2.16` | `1.2.17` | | [clap_complete](https://github.com/clap-rs/clap) | `4.5.46` | `4.5.47` | | [git2](https://github.com/rust-lang/git2-rs) | `0.20.0` | `0.20.1` | | [log](https://github.com/rust-lang/log) | `0.4.26` | `0.4.27` | | [once_cell](https://github.com/matklad/once_cell) | `1.21.0` | `1.21.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.18.0` | `3.19.1` | | [widestring](https://github.com/starkat99/widestring-rs) | `1.1.0` | `1.2.0` | | [ureq](https://github.com/algesten/ureq) | `3.0.8` | `3.0.10` | Updates `cc` from 1.2.16 to 1.2.17 - [Release notes](https://github.com/rust-lang/cc-rs/releases) - [Changelog](https://github.com/rust-lang/cc-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-lang/cc-rs/compare/cc-v1.2.16...cc-v1.2.17) Updates `clap_complete` from 4.5.46 to 4.5.47 - [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.46...clap_complete-v4.5.47) Updates `git2` from 0.20.0 to 0.20.1 - [Changelog](https://github.com/rust-lang/git2-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/git2-rs/compare/git2-0.20.0...git2-0.20.1) Updates `log` from 0.4.26 to 0.4.27 - [Release notes](https://github.com/rust-lang/log/releases) - [Changelog](https://github.com/rust-lang/log/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/log/compare/0.4.26...0.4.27) Updates `once_cell` from 1.21.0 to 1.21.1 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.21.0...v1.21.1) Updates `tempfile` from 3.18.0 to 3.19.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.18.0...v3.19.1) Updates `widestring` from 1.1.0 to 1.2.0 - [Release notes](https://github.com/starkat99/widestring-rs/releases) - [Changelog](https://github.com/VoidStarKat/widestring-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/starkat99/widestring-rs/compare/v1.1.0...v1.2.0) Updates `ureq` from 3.0.8 to 3.0.10 - [Changelog](https://github.com/algesten/ureq/blob/main/CHANGELOG.md) - [Commits](https://github.com/algesten/ureq/compare/3.0.8...3.0.10) --- updated-dependencies: - dependency-name: cc dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: clap_complete dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: git2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: log dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo - dependency-name: widestring dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo - dependency-name: ureq dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo ... Signed-off-by: dependabot[bot] <support@github.com>
81 lines
2 KiB
TOML
81 lines
2 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
|
|
include = ["build.rs", "README.md", "benches/*", "src/**"]
|
|
|
|
[lints]
|
|
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]
|
|
ansi_colours.workspace = true
|
|
anstyle.workspace = true
|
|
anyhow.workspace = true
|
|
bstr.workspace = true
|
|
clap.workspace = true
|
|
clap_complete.workspace = true
|
|
clap_complete_nushell.workspace = true
|
|
ctor.workspace = true
|
|
ctrlc.workspace = true
|
|
dialoguer.workspace = true
|
|
filetime.workspace = true
|
|
glob.workspace = true
|
|
heck.workspace = true
|
|
html-escape.workspace = true
|
|
indexmap.workspace = true
|
|
indoc.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
|
|
streaming-iterator.workspace = true
|
|
tiny_http.workspace = true
|
|
url.workspace = true
|
|
walkdir.workspace = true
|
|
wasmparser.workspace = true
|
|
webbrowser.workspace = true
|
|
|
|
tree-sitter.workspace = true
|
|
tree-sitter-generate.workspace = true
|
|
tree-sitter-config.workspace = true
|
|
tree-sitter-highlight.workspace = true
|
|
tree-sitter-loader.workspace = true
|
|
tree-sitter-tags.workspace = true
|
|
|
|
[dev-dependencies]
|
|
encoding_rs = "0.8.35"
|
|
widestring = "1.2.0"
|
|
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
|