dependabot[bot]
|
d05e4ae7ff
|
build(deps): bump the cargo group across 1 directory with 8 updates
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>
|
2025-03-25 12:24:08 +01:00 |
|
ObserverOfTime
|
032af925fc
|
build(cli): explicitly include files
|
2025-01-28 19:30:43 -05:00 |
|
Amaan Qureshi
|
4b6723192e
|
refactor(cli): replace embedded xterm colors file with ansi_colours
|
2025-01-25 17:20:18 -05:00 |
|
Yuri Astrakhan
|
48059b72a8
|
feat: remove lazy_static in favor of LazyLock
This switches to the built-in `std::sync::LazyLock`
|
2025-01-21 00:21:35 -05:00 |
|
WillLillis
|
faf97b896a
|
fix(cli): use xdg config directory on macOS
fix: address feedback
|
2024-12-23 02:09:06 -05:00 |
|
Amaan Qureshi
|
ea9aa018b3
|
feat(cli): add nushell completions
|
2024-12-10 19:35:58 -05:00 |
|
Amaan Qureshi
|
500f4326d5
|
feat: add the ability to specify a custom decode function
|
2024-10-31 22:51:40 -04:00 |
|
Amaan Qureshi
|
9c08edb066
|
build: configure clippy lints at the workspace level
|
2024-10-08 21:07:41 -04:00 |
|
Amaan Qureshi
|
ea3846a2c5
|
feat: move tree-sitter configuration to dedicated file (#3700)
|
2024-09-30 11:11:23 -04:00 |
|
Lukas Seidel
|
6b1ebd3d29
|
feat!: implement StreamingIterator instead of Iterator for QueryMatches and QueryCaptures
This fixes UB when either `QueryMatches` or `QueryCaptures` had collect called on it.
Co-authored-by: Amaan Qureshi <amaanq12@gmail.com>
|
2024-09-29 17:34:48 -04:00 |
|
Amaan Qureshi
|
31f24395b4
|
feat: move generate logic to its own crate
|
2024-09-27 17:04:21 -04:00 |
|
Amaan Qureshi
|
1f0feb5254
|
feat: add shell completions
|
2024-09-24 12:46:38 -04:00 |
|
Amaan Qureshi
|
6f050f0da5
|
fix: properly handle utf8 code points for highlight and tag assertions
|
2024-09-22 01:03:59 -04:00 |
|
dependabot[bot]
|
12bd194937
|
build(deps): bump the cargo group across 1 directory with 9 updates
Bumps the cargo group with 9 updates in the / directory:
| Package | From | To |
| --- | --- | --- |
| [cc](https://github.com/rust-lang/cc-rs) | `1.0.99` | `1.0.104` |
| [clap](https://github.com/clap-rs/clap) | `4.5.7` | `4.5.8` |
| [fs4](https://github.com/al8n/fs4-rs) | `0.8.3` | `0.8.4` |
| [lazy_static](https://github.com/rust-lang-nursery/lazy-static.rs) | `1.4.0` | `1.5.0` |
| [libloading](https://github.com/nagisa/rust_libloading) | `0.8.3` | `0.8.4` |
| [log](https://github.com/rust-lang/log) | `0.4.21` | `0.4.22` |
| [memchr](https://github.com/BurntSushi/memchr) | `2.7.2` | `2.7.4` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.117` | `1.0.120` |
| [url](https://github.com/servo/rust-url) | `2.5.1` | `2.5.2` |
Updates `cc` from 1.0.99 to 1.0.104
- [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/1.0.99...cc-v1.0.104)
Updates `clap` from 4.5.7 to 4.5.8
- [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.7...v4.5.8)
Updates `fs4` from 0.8.3 to 0.8.4
- [Release notes](https://github.com/al8n/fs4-rs/releases)
- [Commits](https://github.com/al8n/fs4-rs/commits)
Updates `lazy_static` from 1.4.0 to 1.5.0
- [Release notes](https://github.com/rust-lang-nursery/lazy-static.rs/releases)
- [Commits](https://github.com/rust-lang-nursery/lazy-static.rs/compare/1.4.0...1.5.0)
Updates `libloading` from 0.8.3 to 0.8.4
- [Commits](https://github.com/nagisa/rust_libloading/compare/0.8.3...0.8.4)
Updates `log` from 0.4.21 to 0.4.22
- [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.21...0.4.22)
Updates `memchr` from 2.7.2 to 2.7.4
- [Commits](https://github.com/BurntSushi/memchr/compare/2.7.2...2.7.4)
Updates `serde_json` from 1.0.117 to 1.0.120
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](https://github.com/serde-rs/json/compare/v1.0.117...v1.0.120)
Updates `url` from 2.5.1 to 2.5.2
- [Release notes](https://github.com/servo/rust-url/releases)
- [Commits](https://github.com/servo/rust-url/compare/v2.5.1...v2.5.2)
---
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: fs4
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: cargo
- dependency-name: lazy_static
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: cargo
- dependency-name: libloading
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: memchr
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: cargo
- dependency-name: serde_json
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>
|
2024-07-05 03:36:02 -04:00 |
|
dependabot[bot]
|
87baf5b689
|
build(deps): bump the cargo group with 5 updates
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>
|
2024-06-10 22:15:09 -04:00 |
|
Amaan Qureshi
|
e553578696
|
feat: add fuzz subcommand
|
2024-05-30 23:00:45 -04:00 |
|
Amaan Qureshi
|
fc146ad510
|
refactor: remove difference dependency
|
2024-05-25 23:04:28 -04:00 |
|
Amaan Qureshi
|
c440f2a7c6
|
refactor: remove ansi_term dependency
|
2024-05-25 21:09:28 -04:00 |
|
ObserverOfTime
|
055d0cbd34
|
feat(dsl)!: support other JS runtimes
|
2024-05-24 16:53:33 -04:00 |
|
Max Brunsfeld
|
99a720c968
|
Remove dependency on which crate
|
2024-03-12 12:19:27 -07:00 |
|
Amaan Qureshi
|
2e56e94648
|
build: remove unused deps, bump deps, and bump MSRV to 1.74.1
|
2024-03-10 09:47:39 -04:00 |
|
Amaan Qureshi
|
9e5bf6591f
|
feat: improve language bindings
Co-authored-by: ObserverOfTime <chronobserver@disroot.org>
|
2024-02-25 19:06:01 -05:00 |
|
Max Brunsfeld
|
29d3583bdf
|
Use workspace dependencies for internal crates
|
2024-02-25 11:14:29 -08:00 |
|
Amaan Qureshi
|
068e29c265
|
build: unify crate versions via workspace
|
2024-02-24 18:30:04 -05:00 |
|
Amaan Qureshi
|
a5b7c2a584
|
fix: publish 0.21.0 to registries
|
2024-02-21 15:11:37 -05:00 |
|
Max Brunsfeld
|
1c55abb530
|
0.21.0
|
2024-02-21 10:32:29 -08:00 |
|
Amaan Qureshi
|
d80d101e34
|
build: move common Cargo.toml keys into the workspace and inherit them
|
2024-02-14 14:56:23 -05:00 |
|
Amaan Qureshi
|
21f25a5305
|
feat: improve error message for files with an unknown grammar path
|
2024-02-12 17:17:37 -05:00 |
|
Amaan Qureshi
|
a969fc428c
|
chore: move dependencies into the workspace and inherit from there
|
2024-02-08 15:24:09 -05:00 |
|
Amaan Qureshi
|
214e27083a
|
feat(cli): upgrade to clap v4
|
2024-02-08 05:39:41 -05:00 |
|
Amaan Qureshi
|
a0ddae9d1a
|
Merge pull request #2724 from plugwash/master
cli - update to regex-syntax 0.8
|
2024-02-06 19:00:11 -05:00 |
|
dependabot[bot]
|
e592833ea3
|
build(deps): bump which from 4.4.2 to 6.0.0
Bumps [which](https://github.com/harryfei/which-rs) from 4.4.2 to 6.0.0.
- [Release notes](https://github.com/harryfei/which-rs/releases)
- [Changelog](https://github.com/harryfei/which-rs/blob/master/CHANGELOG.md)
- [Commits](https://github.com/harryfei/which-rs/compare/4.4.2...6.0.0)
---
updated-dependencies:
- dependency-name: which
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
|
2024-02-05 21:53:01 +00:00 |
|
Amaan Qureshi
|
4153a1beaa
|
Merge pull request #2929 from tree-sitter/dependabot/cargo/toml-0.8.9
build(deps): bump toml from 0.7.8 to 0.8.9
|
2024-02-05 16:04:02 -05:00 |
|
Amaan Qureshi
|
d86d4bb33b
|
Merge pull request #2930 from tree-sitter/dependabot/cargo/memchr-2.7.1
build(deps): bump memchr from 2.6.4 to 2.7.1
|
2024-02-05 16:03:29 -05:00 |
|
dependabot[bot]
|
65137d62e5
|
build(deps): bump memchr from 2.6.4 to 2.7.1
Bumps [memchr](https://github.com/BurntSushi/memchr) from 2.6.4 to 2.7.1.
- [Commits](https://github.com/BurntSushi/memchr/compare/2.6.4...2.7.1)
---
updated-dependencies:
- dependency-name: memchr
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
|
2024-02-05 19:59:19 +00:00 |
|
dependabot[bot]
|
86e522aa43
|
build(deps): bump toml from 0.7.8 to 0.8.9
Bumps [toml](https://github.com/toml-rs/toml) from 0.7.8 to 0.8.9.
- [Commits](https://github.com/toml-rs/toml/compare/toml-v0.7.8...toml-v0.8.9)
---
updated-dependencies:
- dependency-name: toml
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
|
2024-02-05 19:59:08 +00:00 |
|
Max Brunsfeld
|
f4788b49c0
|
Merge branch 'master' into wasm-stdlib
|
2024-02-05 11:55:58 -08:00 |
|
root
|
b7d48b48fd
|
chore(cli): update to regex-syntax 0.8
regex-syntax has restructured the Ast enum a bit, rather than having a Class
member it now has seperate members for different types of Class.
|
2024-02-05 01:22:09 -05:00 |
|
Amaan Qureshi
|
5e8885ff11
|
chore(deps): remove atty
|
2024-02-05 00:46:38 -05:00 |
|
Max Brunsfeld
|
e054de4191
|
Return an error from build-wasm if scanner uses unavailable functions
|
2024-02-02 12:04:49 -08:00 |
|
Amaan Qureshi
|
98be227227
|
0.20.9
|
2024-01-25 15:05:17 -05:00 |
|
Max Brunsfeld
|
13dd76e444
|
Return an informative error on failing to construct a WasmStore
|
2023-11-27 17:48:29 -08:00 |
|
Max Brunsfeld
|
473b3c8208
|
Add a CLI feature flag for wasm runtime support
|
2023-10-31 16:56:11 -07:00 |
|
Max Brunsfeld
|
091652721e
|
Use upstream wasmtime
|
2023-10-27 12:43:16 +01:00 |
|
Max Brunsfeld
|
f4e2f68f14
|
Merge branch 'master' into wasm-language
|
2023-10-27 12:11:43 +01:00 |
|
Andrew Hlynskyi
|
c63f1680ad
|
chore(rust): improve perf for position funcs
|
2023-10-05 17:24:01 +03:00 |
|
Andrew Hlynskyi
|
756e51867d
|
doc: fix cargo doc warnings
|
2023-08-28 23:09:37 +03:00 |
|
Andrew Hlynskyi
|
59b8eaf911
|
rust: pin serde version on 1.0.171 due to serde-rs/serde#2538
|
2023-08-19 16:15:47 +03:00 |
|
Amaan Qureshi
|
75e1bcf70a
|
refactor!: rename proc_macro to avoid conflicts when building std with -Z build-std
|
2023-07-24 00:44:44 -04:00 |
|
Amaan Qureshi
|
56cedba4bf
|
chore: bump dependencies
|
2023-07-19 03:18:17 -04:00 |
|