@tsrx/oxc-darwin-arm64 0.0.0-trusted-publishing-bootstrap → 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +22 -0
- package/README.md +37 -0
- package/THIRD_PARTY_NOTICES.md +25 -0
- package/bin/oxc-tsrx +0 -0
- package/checksums.json +55 -0
- package/licenses/README.md +17 -0
- package/licenses/RUST_DEPENDENCIES.md +240 -0
- package/licenses/allowed-rust-license-expressions.json +42 -0
- package/licenses/oxc/LICENSE +22 -0
- package/licenses/oxc/PROVENANCE.json +16 -0
- package/licenses/oxc/THIRD-PARTY-LICENSE +763 -0
- package/licenses/rust-dependencies.json +1994 -0
- package/package.json +82 -5
- package/parser.node +0 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Jack Shelton
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
22
|
+
|
package/README.md
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# OXC for TSRX native binaries
|
|
2
|
+
|
|
3
|
+
This is a platform-specific implementation package for
|
|
4
|
+
[`@tsrx/oxc`](https://www.npmjs.com/package/@tsrx/oxc). There are eight of them,
|
|
5
|
+
one per supported target, named `@tsrx/oxc-<platform>`, and `@tsrx/oxc` lists
|
|
6
|
+
all eight as
|
|
7
|
+
`optionalDependencies`. Your package manager installs only the one matching
|
|
8
|
+
your operating system, CPU, and C library, so a normal install downloads one
|
|
9
|
+
prebuilt binary rather than eight.
|
|
10
|
+
|
|
11
|
+
You should not add this package to your own `package.json`. Depend on
|
|
12
|
+
`@tsrx/oxc` and let resolution pick the platform package for you. Install it by
|
|
13
|
+
hand only if a package manager has been configured to skip optional
|
|
14
|
+
dependencies. The package has no install script and does not download or
|
|
15
|
+
compile anything after installation.
|
|
16
|
+
|
|
17
|
+
## What is inside
|
|
18
|
+
|
|
19
|
+
`bin/oxc-tsrx` is one Rust-native executable that carries the linter, the
|
|
20
|
+
formatter, and the language server together. It selects a tool from a leading
|
|
21
|
+
subcommand: none or `lint` to lint, `fmt` to format, `lsp` to serve an editor.
|
|
22
|
+
It also dispatches on the name it was invoked under, so a copy or link named
|
|
23
|
+
`oxc-tsrx-fmt` or `oxc-tsrx-lsp` runs that tool directly.
|
|
24
|
+
|
|
25
|
+
One executable rather than three matters for download size. Three separate
|
|
26
|
+
binaries linked the same OXC engines three times; the merged one is a little
|
|
27
|
+
over half the bytes.
|
|
28
|
+
|
|
29
|
+
Schema-2 releases also contain `parser.node`, the canonical Node-API parser
|
|
30
|
+
addon. `@tsrx/oxc` loads it for its `@tsrx/oxc/parser` export.
|
|
31
|
+
|
|
32
|
+
## Verifying what you got
|
|
33
|
+
|
|
34
|
+
`checksums.json` records, for every executable and addon in the package, its
|
|
35
|
+
SHA-256 digest, byte size, object identity, Rust target, package version,
|
|
36
|
+
API/ABI role, Node-API version, capabilities, and the exact official OXC
|
|
37
|
+
revision it was built against.
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# Third-party notices
|
|
2
|
+
|
|
3
|
+
OXC for TSRX links canonical OXC Rust crates from commit
|
|
4
|
+
`8e0ed2ebb96137fb1611cdbd5742d5cb46037d40` of
|
|
5
|
+
<https://github.com/oxc-project/oxc>. OXC is licensed under the MIT License.
|
|
6
|
+
The byte-exact upstream `LICENSE`, upstream `THIRD-PARTY-LICENSE`, their source
|
|
7
|
+
URLs, and their SHA-256 provenance are shipped in `licenses/oxc/`.
|
|
8
|
+
|
|
9
|
+
The dependency is an exact-revision Cargo dependency. No OXC source is copied,
|
|
10
|
+
vendored, patched, or forked in this repository. The complete normal/build
|
|
11
|
+
dependency closure of the distributed Rust binaries, including locked versions,
|
|
12
|
+
Cargo license expressions, source identities, and registry checksums, is shipped
|
|
13
|
+
as `licenses/rust-dependencies.json` and `licenses/RUST_DEPENDENCIES.md`.
|
|
14
|
+
`scripts/generate-rust-license-inventory.ts --check` fails if that report,
|
|
15
|
+
`Cargo.lock`, the accepted-expression policy, or either canonical OXC legal file
|
|
16
|
+
drifts.
|
|
17
|
+
|
|
18
|
+
The lint and formatter benchmark harnesses use `memory-stats` 1.2.0 to read
|
|
19
|
+
current-process RSS without privileged process inspection. `memory-stats` is
|
|
20
|
+
dual-licensed under MIT or Apache-2.0 and is not linked into any distributed
|
|
21
|
+
binary, so it is deliberately outside the shipping dependency report.
|
|
22
|
+
|
|
23
|
+
OXC for TSRX is an independent community integration. It is not an official OXC
|
|
24
|
+
project and is not affiliated with or endorsed by VoidZero Inc. or the OXC
|
|
25
|
+
contributors.
|
package/bin/oxc-tsrx
ADDED
|
Binary file
|
package/checksums.json
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 2,
|
|
3
|
+
"packageName": "@tsrx/oxc-darwin-arm64",
|
|
4
|
+
"version": "0.7.0",
|
|
5
|
+
"target": "aarch64-apple-darwin",
|
|
6
|
+
"oxcRevision": "8e0ed2ebb96137fb1611cdbd5742d5cb46037d40",
|
|
7
|
+
"rustc": "rustc 1.96.0 (ac68faa20 2026-05-25)\nbinary: rustc\ncommit-hash: ac68faa20c58cbccd01ee7208bf3b6e93a7d7f96\ncommit-date: 2026-05-25\nhost: aarch64-apple-darwin\nrelease: 1.96.0\nLLVM version: 22.1.2",
|
|
8
|
+
"objectVerification": "executable-and-dynamic-library-header",
|
|
9
|
+
"verification": "host-executed",
|
|
10
|
+
"binaries": {
|
|
11
|
+
"oxc-tsrx": {
|
|
12
|
+
"sha256": "e034b24e8fddd730334390dbc4f6c3a37aa8ef443782638507fbcb939946ff3f",
|
|
13
|
+
"bytes": 14067760,
|
|
14
|
+
"object": {
|
|
15
|
+
"format": "mach-o",
|
|
16
|
+
"os": "darwin",
|
|
17
|
+
"bits": 64,
|
|
18
|
+
"architectures": [
|
|
19
|
+
"arm64"
|
|
20
|
+
]
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
"addons": {
|
|
25
|
+
"parser.node": {
|
|
26
|
+
"packageVersion": "0.7.0",
|
|
27
|
+
"target": "aarch64-apple-darwin",
|
|
28
|
+
"bytes": 2540944,
|
|
29
|
+
"sha256": "976c84f38c9b028d47149a29348ad4ecd736533079c64e615a09049ebbeac06e",
|
|
30
|
+
"object": {
|
|
31
|
+
"format": "mach-o",
|
|
32
|
+
"imageKind": "dynamic-library",
|
|
33
|
+
"os": "darwin",
|
|
34
|
+
"bits": 64,
|
|
35
|
+
"architectures": [
|
|
36
|
+
"arm64"
|
|
37
|
+
],
|
|
38
|
+
"libc": null
|
|
39
|
+
},
|
|
40
|
+
"nodeApi": 8,
|
|
41
|
+
"oxcRevision": "8e0ed2ebb96137fb1611cdbd5742d5cb46037d40",
|
|
42
|
+
"capabilities": {
|
|
43
|
+
"lazy": true,
|
|
44
|
+
"async": true,
|
|
45
|
+
"editorRecovery": false,
|
|
46
|
+
"cssMaterialization": false,
|
|
47
|
+
"rawTransfer": false
|
|
48
|
+
},
|
|
49
|
+
"role": "canonical-parser",
|
|
50
|
+
"file": "parser.node",
|
|
51
|
+
"apiVersion": 1,
|
|
52
|
+
"transportAbi": 1
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# Shipping license inventory
|
|
2
|
+
|
|
3
|
+
The native npm packages and platform VSIX include this directory alongside
|
|
4
|
+
the project `LICENSE` and `THIRD_PARTY_NOTICES.md`.
|
|
5
|
+
|
|
6
|
+
- `oxc/LICENSE` and `oxc/THIRD-PARTY-LICENSE` are byte-exact copies from the
|
|
7
|
+
canonical OXC revision recorded in `oxc/PROVENANCE.json`.
|
|
8
|
+
- `rust-dependencies.json` is the machine-readable dependency closure for the
|
|
9
|
+
three distributed Rust binaries and the native parser addon.
|
|
10
|
+
- `RUST_DEPENDENCIES.md` is the matching human-readable report.
|
|
11
|
+
- `allowed-rust-license-expressions.json` is a fail-closed review policy, not
|
|
12
|
+
legal advice. It explicitly selects a distribution license for every
|
|
13
|
+
dual/multi-license expression (including Apache-2.0 for `self_cell`, not
|
|
14
|
+
GPL-2.0-only). A new expression stops the deterministic compliance gate.
|
|
15
|
+
|
|
16
|
+
Regenerate the locked Rust reports with `pnpm run licenses:rust:generate` and
|
|
17
|
+
verify them without mutation with `pnpm run licenses:rust:check`.
|
|
@@ -0,0 +1,240 @@
|
|
|
1
|
+
# Rust binary dependency licenses
|
|
2
|
+
|
|
3
|
+
This report is generated by `scripts/generate-rust-license-inventory.ts` from
|
|
4
|
+
the committed `Cargo.lock`. Do not edit it by hand. It covers the normal and
|
|
5
|
+
build dependency closure of the three binaries in `oxc_tsrx_cli` and the
|
|
6
|
+
native addon in `parser_napi_binding`; benchmark and development-only
|
|
7
|
+
dependencies are excluded.
|
|
8
|
+
|
|
9
|
+
- Cargo.lock SHA-256: `3b20104bd20c20abb825f953f1f1f8cbfdb18822f8173f3015d967903d1e7c3b`
|
|
10
|
+
- Canonical OXC revision: `8e0ed2ebb96137fb1611cdbd5742d5cb46037d40`
|
|
11
|
+
- Shipping third-party packages: 220
|
|
12
|
+
- Accepted license policy: `licenses/allowed-rust-license-expressions.json`
|
|
13
|
+
- Every dual/multi-license expression has an explicit selected distribution
|
|
14
|
+
license. In particular, `self_cell` is distributed under Apache-2.0, not
|
|
15
|
+
GPL-2.0-only.
|
|
16
|
+
- Canonical OXC texts: `licenses/oxc/LICENSE` and
|
|
17
|
+
`licenses/oxc/THIRD-PARTY-LICENSE`
|
|
18
|
+
|
|
19
|
+
| Package | Version | Cargo license expression | Selected distribution license | Locked source | Checksum |
|
|
20
|
+
| --- | --- | --- | --- | --- | --- |
|
|
21
|
+
| aho-corasick | 1.1.4 | Unlicense OR MIT | **MIT** | [crates.io](https://crates.io/crates/aho-corasick/1.1.4) | ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301 |
|
|
22
|
+
| allocator-api2 | 0.2.21 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/allocator-api2/0.2.21) | 683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923 |
|
|
23
|
+
| arrayvec | 0.7.8 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/arrayvec/0.7.8) | d3fb67a6e08acf24fdeccbac2cb6ac4305825bd1f117462e0e6f2f193345ad56 |
|
|
24
|
+
| autocfg | 1.5.1 | Apache-2.0 OR MIT | **MIT** | [crates.io](https://crates.io/crates/autocfg/1.5.1) | f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53 |
|
|
25
|
+
| bitflags | 2.13.1 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/bitflags/2.13.1) | b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da |
|
|
26
|
+
| borrow-or-share | 0.2.4 | MIT-0 | **MIT-0** | [crates.io](https://crates.io/crates/borrow-or-share/0.2.4) | dc0b364ead1874514c8c2855ab558056ebfeb775653e7ae45ff72f28f8f3166c |
|
|
27
|
+
| bstr | 1.13.0 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/bstr/1.13.0) | 1f7dc094d718f2e1c1559ad110e27eeaae14a5465d3d56dd6dbd793079fbd530 |
|
|
28
|
+
| bytes | 1.12.1 | MIT | **MIT** | [crates.io](https://crates.io/crates/bytes/1.12.1) | fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04 |
|
|
29
|
+
| castaway | 0.2.4 | MIT | **MIT** | [crates.io](https://crates.io/crates/castaway/0.2.4) | dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a |
|
|
30
|
+
| cc | 1.3.0 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/cc/1.3.0) | c89588d05638b5b4594a3348a2d6c20277e43a7f5c5202b05cc56888475a47b8 |
|
|
31
|
+
| cfg-if | 1.0.4 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/cfg-if/1.0.4) | 9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801 |
|
|
32
|
+
| cmake | 0.1.58 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/cmake/0.1.58) | c0f78a02292a74a88ac736019ab962ece0bc380e3f977bf72e376c5d78ff0678 |
|
|
33
|
+
| compact_str | 0.9.1 | MIT | **MIT** | [crates.io](https://crates.io/crates/compact_str/0.9.1) | 9dfdd1c2274d9aa354115b09dc9a901d6c5576818cdf70d14cae2bdb47df00ab |
|
|
34
|
+
| constcat | 0.6.1 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/constcat/0.6.1) | 136d3e02915a2cea4d74caa8681e2d44b1c3254bdbf17d11d41d587ff858832c |
|
|
35
|
+
| convert_case | 0.11.0 | MIT | **MIT** | [crates.io](https://crates.io/crates/convert_case/0.11.0) | affbf0190ed2caf063e3def54ff444b449371d55c58e513a95ab98eca50adb49 |
|
|
36
|
+
| cow-utils | 0.1.3 | MIT | **MIT** | [crates.io](https://crates.io/crates/cow-utils/0.1.3) | 417bef24afe1460300965a25ff4a24b8b45ad011948302ec221e8a0a81eb2c79 |
|
|
37
|
+
| crossbeam-deque | 0.8.7 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/crossbeam-deque/0.8.7) | 5181e0de7b61eb03a81e347d6dd8797bae9da5146707b51077e2d71a54ec0ceb |
|
|
38
|
+
| crossbeam-epoch | 0.9.20 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/crossbeam-epoch/0.9.20) | 2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f |
|
|
39
|
+
| crossbeam-utils | 0.8.22 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/crossbeam-utils/0.8.22) | 61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17 |
|
|
40
|
+
| ctor | 1.0.9 | Apache-2.0 OR MIT | **MIT** | [crates.io](https://crates.io/crates/ctor/1.0.9) | a394189d59f9befacce833f337f7b1eca5e9a91221bcdd4d28e0114d96e597b3 |
|
|
41
|
+
| dashmap | 6.2.1 | MIT | **MIT** | [crates.io](https://crates.io/crates/dashmap/6.2.1) | e6361d5c062261c78a176addb82d4c821ae42bed6089de0e12603cd25de2059c |
|
|
42
|
+
| displaydoc | 0.2.6 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/displaydoc/0.2.6) | 1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f |
|
|
43
|
+
| dragonbox_ecma | 0.1.12 | Apache-2.0 WITH LLVM-exception OR BSL-1.0 | **BSL-1.0** | [crates.io](https://crates.io/crates/dragonbox_ecma/0.1.12) | fd8e701084c37e7ef62d3f9e453b618130cbc0ef3573847785952a3ac3f746bf |
|
|
44
|
+
| dyn-clone | 1.0.20 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/dyn-clone/1.0.20) | d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555 |
|
|
45
|
+
| either | 1.16.0 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/either/1.16.0) | 91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e |
|
|
46
|
+
| equivalent | 1.0.2 | Apache-2.0 OR MIT | **MIT** | [crates.io](https://crates.io/crates/equivalent/1.0.2) | 877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f |
|
|
47
|
+
| errno | 0.3.14 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/errno/0.3.14) | 39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb |
|
|
48
|
+
| fast-glob | 1.0.1 | MIT | **MIT** | [crates.io](https://crates.io/crates/fast-glob/1.0.1) | 3b9e81515b0279bf618200fd15d132e7195d2048fb46eed6f0f3c10cbc068266 |
|
|
49
|
+
| fastrand | 2.4.1 | Apache-2.0 OR MIT | **MIT** | [crates.io](https://crates.io/crates/fastrand/2.4.1) | 9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6 |
|
|
50
|
+
| find-msvc-tools | 0.1.9 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/find-msvc-tools/0.1.9) | 5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582 |
|
|
51
|
+
| fixedbitset | 0.5.7 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/fixedbitset/0.5.7) | 1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99 |
|
|
52
|
+
| float-cmp | 0.10.0 | MIT | **MIT** | [crates.io](https://crates.io/crates/float-cmp/0.10.0) | b09cf3155332e944990140d967ff5eceb70df778b34f77d8075db46e4704e6d8 |
|
|
53
|
+
| fluent-uri | 0.4.1 | MIT | **MIT** | [crates.io](https://crates.io/crates/fluent-uri/0.4.1) | bc74ac4d8359ae70623506d512209619e5cf8f347124910440dbc221714b328e |
|
|
54
|
+
| foldhash | 0.1.5 | Zlib | **Zlib** | [crates.io](https://crates.io/crates/foldhash/0.1.5) | d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2 |
|
|
55
|
+
| foldhash | 0.2.0 | Zlib | **Zlib** | [crates.io](https://crates.io/crates/foldhash/0.2.0) | 77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb |
|
|
56
|
+
| form_urlencoded | 1.2.2 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/form_urlencoded/1.2.2) | cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf |
|
|
57
|
+
| futures-channel | 0.3.32 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/futures-channel/0.3.32) | 07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d |
|
|
58
|
+
| futures-core | 0.3.32 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/futures-core/0.3.32) | 7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d |
|
|
59
|
+
| futures-executor | 0.3.32 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/futures-executor/0.3.32) | baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d |
|
|
60
|
+
| futures-io | 0.3.32 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/futures-io/0.3.32) | cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718 |
|
|
61
|
+
| futures-macro | 0.3.32 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/futures-macro/0.3.32) | e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b |
|
|
62
|
+
| futures-sink | 0.3.32 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/futures-sink/0.3.32) | c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893 |
|
|
63
|
+
| futures-task | 0.3.32 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/futures-task/0.3.32) | 037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393 |
|
|
64
|
+
| futures-util | 0.3.32 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/futures-util/0.3.32) | 389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6 |
|
|
65
|
+
| futures | 0.3.32 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/futures/0.3.32) | 8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d |
|
|
66
|
+
| globset | 0.4.19 | Unlicense OR MIT | **MIT** | [crates.io](https://crates.io/crates/globset/0.4.19) | e47d37d2ae4464254884b60ab7071be2b876a9c35b696bd018ddcc76847309cd |
|
|
67
|
+
| halfbrown | 0.4.0 | Apache-2.0/MIT | **MIT** | [crates.io](https://crates.io/crates/halfbrown/0.4.0) | 0c7ed2f2edad8a14c8186b847909a41fbb9c3eafa44f88bd891114ed5019da09 |
|
|
68
|
+
| hashbrown | 0.14.5 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/hashbrown/0.14.5) | e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1 |
|
|
69
|
+
| hashbrown | 0.15.5 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/hashbrown/0.15.5) | 9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1 |
|
|
70
|
+
| hashbrown | 0.16.1 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/hashbrown/0.16.1) | 841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100 |
|
|
71
|
+
| hashbrown | 0.17.1 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/hashbrown/0.17.1) | ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a |
|
|
72
|
+
| httparse | 1.10.1 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/httparse/1.10.1) | 6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87 |
|
|
73
|
+
| icu_collections | 2.2.0 | Unicode-3.0 | **Unicode-3.0** | [crates.io](https://crates.io/crates/icu_collections/2.2.0) | 2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c |
|
|
74
|
+
| icu_locale_core | 2.2.0 | Unicode-3.0 | **Unicode-3.0** | [crates.io](https://crates.io/crates/icu_locale_core/2.2.0) | 92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29 |
|
|
75
|
+
| icu_normalizer_data | 2.2.0 | Unicode-3.0 | **Unicode-3.0** | [crates.io](https://crates.io/crates/icu_normalizer_data/2.2.0) | da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38 |
|
|
76
|
+
| icu_normalizer | 2.2.0 | Unicode-3.0 | **Unicode-3.0** | [crates.io](https://crates.io/crates/icu_normalizer/2.2.0) | c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4 |
|
|
77
|
+
| icu_properties_data | 2.2.0 | Unicode-3.0 | **Unicode-3.0** | [crates.io](https://crates.io/crates/icu_properties_data/2.2.0) | 8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14 |
|
|
78
|
+
| icu_properties | 2.2.0 | Unicode-3.0 | **Unicode-3.0** | [crates.io](https://crates.io/crates/icu_properties/2.2.0) | bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de |
|
|
79
|
+
| icu_provider | 2.2.0 | Unicode-3.0 | **Unicode-3.0** | [crates.io](https://crates.io/crates/icu_provider/2.2.0) | 139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421 |
|
|
80
|
+
| idna_adapter | 1.2.2 | Apache-2.0 OR MIT | **MIT** | [crates.io](https://crates.io/crates/idna_adapter/1.2.2) | cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714 |
|
|
81
|
+
| idna | 1.1.0 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/idna/1.1.0) | 3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de |
|
|
82
|
+
| ignore | 0.4.29 | Unlicense OR MIT | **MIT** | [crates.io](https://crates.io/crates/ignore/0.4.29) | d4ffa3a0547a138e59ddd6fa3b7c672ed47e6ad6a3cd177984ff1116aa5ba742 |
|
|
83
|
+
| indexmap | 2.14.0 | Apache-2.0 OR MIT | **MIT** | [crates.io](https://crates.io/crates/indexmap/2.14.0) | d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9 |
|
|
84
|
+
| itertools | 0.15.0 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/itertools/0.15.0) | 8b4baf93f58d4425749ca49a51c50ebab072c5df6994d08fed93541c331481dc |
|
|
85
|
+
| itoa | 1.0.18 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/itoa/1.0.18) | 8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682 |
|
|
86
|
+
| javascript-globals | 1.5.1 | MIT | **MIT** | [crates.io](https://crates.io/crates/javascript-globals/1.5.1) | 6c5f4cff6dd96f6045e5e53d52ef114724989508a83e0dd72eea795844390297 |
|
|
87
|
+
| json-strip-comments | 3.1.1 | MIT | **MIT** | [crates.io](https://crates.io/crates/json-strip-comments/3.1.1) | 9301b34ecbe81051a62001a2dfa56d906628efdfbc68153e0a4d5eba58181ece |
|
|
88
|
+
| language-tags | 0.3.2 | MIT/Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/language-tags/0.3.2) | d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388 |
|
|
89
|
+
| lazy-regex-proc_macros | 3.6.0 | MIT | **MIT** | [crates.io](https://crates.io/crates/lazy-regex-proc_macros/3.6.0) | 4de9c1e1439d8b7b3061b2d209809f447ca33241733d9a3c01eabf2dc8d94358 |
|
|
90
|
+
| lazy-regex | 3.6.0 | MIT | **MIT** | [crates.io](https://crates.io/crates/lazy-regex/3.6.0) | 6bae91019476d3ec7147de9aa291cadb6d870abf2f3015d2da73a90325ac1496 |
|
|
91
|
+
| libc | 0.2.186 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/libc/0.2.186) | 68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66 |
|
|
92
|
+
| libloading | 0.9.0 | ISC | **ISC** | [crates.io](https://crates.io/crates/libloading/0.9.0) | 754ca22de805bb5744484a5b151a9e1a8e837d5dc232c2d7d8c2e3492edc8b60 |
|
|
93
|
+
| libmimalloc-sys2 | 0.1.60 | MIT | **MIT** | [crates.io](https://crates.io/crates/libmimalloc-sys2/0.1.60) | 921641155d9dc4f434332abd912518e33c70e37c557434818b6cfd1fbbb6138d |
|
|
94
|
+
| linux-raw-sys | 0.12.1 | Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT | **MIT** | [crates.io](https://crates.io/crates/linux-raw-sys/0.12.1) | 32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53 |
|
|
95
|
+
| litemap | 0.8.2 | Unicode-3.0 | **Unicode-3.0** | [crates.io](https://crates.io/crates/litemap/0.8.2) | 92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0 |
|
|
96
|
+
| lock_api | 0.4.14 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/lock_api/0.4.14) | 224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965 |
|
|
97
|
+
| log | 0.4.33 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/log/0.4.33) | 0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad |
|
|
98
|
+
| ls-types | 0.0.3 | MIT | **MIT** | [crates.io](https://crates.io/crates/ls-types/0.0.3) | c029d4b509074b7d59dac432d87d4c24badaaf6c6c9c8b7ac030ae8022dc118d |
|
|
99
|
+
| markdown | 1.0.0 | MIT | **MIT** | [crates.io](https://crates.io/crates/markdown/1.0.0) | a5cab8f2cadc416a82d2e783a1946388b31654d391d1c7d92cc1f03e295b1deb |
|
|
100
|
+
| memchr | 2.8.3 | Unlicense OR MIT | **MIT** | [crates.io](https://crates.io/crates/memchr/2.8.3) | cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98 |
|
|
101
|
+
| mimalloc-safe | 0.1.64 | MIT | **MIT** | [crates.io](https://crates.io/crates/mimalloc-safe/0.1.64) | afd082b59cfceeb3bf31dbff65e7b96e1f94fa9b918e131d02353e6867a12824 |
|
|
102
|
+
| napi-build | 2.3.2 | MIT | **MIT** | [crates.io](https://crates.io/crates/napi-build/2.3.2) | c9c366d2c8c60b86fa632df75f745509b52f9128f91a6bad4c796e44abb505e1 |
|
|
103
|
+
| napi-derive-backend | 5.1.2 | MIT | **MIT** | [crates.io](https://crates.io/crates/napi-derive-backend/5.1.2) | 514281397bcddd9ea9a876c7a21a57bff2374237a000ca9a64ea0211ec1993e2 |
|
|
104
|
+
| napi-derive | 3.5.10 | MIT | **MIT** | [crates.io](https://crates.io/crates/napi-derive/3.5.10) | b0fe526e81c105d3640516fcde83909dd1afe757c0d7a15af58830b5bc0fb9a1 |
|
|
105
|
+
| napi-sys | 3.2.3 | MIT | **MIT** | [crates.io](https://crates.io/crates/napi-sys/3.2.3) | 73e43cf2eb0bd1bf95a43c07c076ebd2da5d1e015a71c3d201faeffffcc0ecac |
|
|
106
|
+
| napi | 3.10.5 | MIT | **MIT** | [crates.io](https://crates.io/crates/napi/3.10.5) | 6826e5ddc15589b2d68c8ad5321c18e85d40488e93e32962f362e572669bccf6 |
|
|
107
|
+
| natord | 1.0.9 | MIT | **MIT** | [crates.io](https://crates.io/crates/natord/1.0.9) | 308d96db8debc727c3fd9744aac51751243420e46edf401010908da7f8d5e57c |
|
|
108
|
+
| nodejs-built-in-modules | 1.0.0 | MIT | **MIT** | [crates.io](https://crates.io/crates/nodejs-built-in-modules/1.0.0) | a5eb86a92577833b75522336f210c49d9ebd7dd55a44d80a92e68c668a75f27c |
|
|
109
|
+
| nohash-hasher | 0.2.0 | Apache-2.0 OR MIT | **MIT** | [crates.io](https://crates.io/crates/nohash-hasher/0.2.0) | 2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451 |
|
|
110
|
+
| nonmax | 0.5.5 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/nonmax/0.5.5) | 610a5acd306ec67f907abe5567859a3c693fb9886eb1f012ab8f2a47bef3db51 |
|
|
111
|
+
| num-bigint | 0.5.1 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/num-bigint/0.5.1) | 93e7820bc0a80a0238e650327316f929ba18d5be054b647490a3a6a339f3e7c0 |
|
|
112
|
+
| num-integer | 0.1.46 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/num-integer/0.1.46) | 7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f |
|
|
113
|
+
| num-traits | 0.2.19 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/num-traits/0.2.19) | 071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841 |
|
|
114
|
+
| once_cell | 1.21.4 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/once_cell/1.21.4) | 9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50 |
|
|
115
|
+
| owo-colors | 4.3.0 | MIT | **MIT** | [crates.io](https://crates.io/crates/owo-colors/4.3.0) | d211803b9b6b570f68772237e415a029d5a50c65d382910b879fb19d3271f94d |
|
|
116
|
+
| oxc_allocator | 0.140.0 | MIT | **MIT** | [OXC 8e0ed2ebb961](https://github.com/oxc-project/oxc/tree/8e0ed2ebb96137fb1611cdbd5742d5cb46037d40) | revision-pinned |
|
|
117
|
+
| oxc_ast_macros | 0.140.0 | MIT | **MIT** | [OXC 8e0ed2ebb961](https://github.com/oxc-project/oxc/tree/8e0ed2ebb96137fb1611cdbd5742d5cb46037d40) | revision-pinned |
|
|
118
|
+
| oxc_ast_visit | 0.140.0 | MIT | **MIT** | [OXC 8e0ed2ebb961](https://github.com/oxc-project/oxc/tree/8e0ed2ebb96137fb1611cdbd5742d5cb46037d40) | revision-pinned |
|
|
119
|
+
| oxc_ast | 0.140.0 | MIT | **MIT** | [OXC 8e0ed2ebb961](https://github.com/oxc-project/oxc/tree/8e0ed2ebb96137fb1611cdbd5742d5cb46037d40) | revision-pinned |
|
|
120
|
+
| oxc_cfg | 0.140.0 | MIT | **MIT** | [OXC 8e0ed2ebb961](https://github.com/oxc-project/oxc/tree/8e0ed2ebb96137fb1611cdbd5742d5cb46037d40) | revision-pinned |
|
|
121
|
+
| oxc_codegen | 0.140.0 | MIT | **MIT** | [OXC 8e0ed2ebb961](https://github.com/oxc-project/oxc/tree/8e0ed2ebb96137fb1611cdbd5742d5cb46037d40) | revision-pinned |
|
|
122
|
+
| oxc_config | 0.0.0 | MIT | **MIT** | [OXC 8e0ed2ebb961](https://github.com/oxc-project/oxc/tree/8e0ed2ebb96137fb1611cdbd5742d5cb46037d40) | revision-pinned |
|
|
123
|
+
| oxc_data_structures | 0.140.0 | MIT | **MIT** | [OXC 8e0ed2ebb961](https://github.com/oxc-project/oxc/tree/8e0ed2ebb96137fb1611cdbd5742d5cb46037d40) | revision-pinned |
|
|
124
|
+
| oxc_diagnostics | 0.140.0 | MIT | **MIT** | [OXC 8e0ed2ebb961](https://github.com/oxc-project/oxc/tree/8e0ed2ebb96137fb1611cdbd5742d5cb46037d40) | revision-pinned |
|
|
125
|
+
| oxc_ecmascript | 0.140.0 | MIT | **MIT** | [OXC 8e0ed2ebb961](https://github.com/oxc-project/oxc/tree/8e0ed2ebb96137fb1611cdbd5742d5cb46037d40) | revision-pinned |
|
|
126
|
+
| oxc_estree_tokens | 0.140.0 | MIT | **MIT** | [OXC 8e0ed2ebb961](https://github.com/oxc-project/oxc/tree/8e0ed2ebb96137fb1611cdbd5742d5cb46037d40) | revision-pinned |
|
|
127
|
+
| oxc_estree | 0.140.0 | MIT | **MIT** | [OXC 8e0ed2ebb961](https://github.com/oxc-project/oxc/tree/8e0ed2ebb96137fb1611cdbd5742d5cb46037d40) | revision-pinned |
|
|
128
|
+
| oxc_formatter_core | 0.59.0 | MIT | **MIT** | [OXC 8e0ed2ebb961](https://github.com/oxc-project/oxc/tree/8e0ed2ebb96137fb1611cdbd5742d5cb46037d40) | revision-pinned |
|
|
129
|
+
| oxc_formatter | 0.59.0 | MIT | **MIT** | [OXC 8e0ed2ebb961](https://github.com/oxc-project/oxc/tree/8e0ed2ebb96137fb1611cdbd5742d5cb46037d40) | revision-pinned |
|
|
130
|
+
| oxc_index | 5.0.0 | MIT | **MIT** | [crates.io](https://crates.io/crates/oxc_index/5.0.0) | 191884bee6c3744909a51acc7d78d4ae370d817b25875b10642f632327b6296e |
|
|
131
|
+
| oxc_jsdoc | 0.140.0 | MIT | **MIT** | [OXC 8e0ed2ebb961](https://github.com/oxc-project/oxc/tree/8e0ed2ebb96137fb1611cdbd5742d5cb46037d40) | revision-pinned |
|
|
132
|
+
| oxc_language_server | 1.41.0 | MIT | **MIT** | [OXC 8e0ed2ebb961](https://github.com/oxc-project/oxc/tree/8e0ed2ebb96137fb1611cdbd5742d5cb46037d40) | revision-pinned |
|
|
133
|
+
| oxc_linter | 1.74.0 | MIT | **MIT** | [OXC 8e0ed2ebb961](https://github.com/oxc-project/oxc/tree/8e0ed2ebb96137fb1611cdbd5742d5cb46037d40) | revision-pinned |
|
|
134
|
+
| oxc_macros | 0.0.0 | MIT | **MIT** | [OXC 8e0ed2ebb961](https://github.com/oxc-project/oxc/tree/8e0ed2ebb96137fb1611cdbd5742d5cb46037d40) | revision-pinned |
|
|
135
|
+
| oxc_parser | 0.140.0 | MIT | **MIT** | [OXC 8e0ed2ebb961](https://github.com/oxc-project/oxc/tree/8e0ed2ebb96137fb1611cdbd5742d5cb46037d40) | revision-pinned |
|
|
136
|
+
| oxc_react_compiler | 0.140.0 | MIT | **MIT** | [OXC 8e0ed2ebb961](https://github.com/oxc-project/oxc/tree/8e0ed2ebb96137fb1611cdbd5742d5cb46037d40) | revision-pinned |
|
|
137
|
+
| oxc_regular_expression | 0.140.0 | MIT | **MIT** | [OXC 8e0ed2ebb961](https://github.com/oxc-project/oxc/tree/8e0ed2ebb96137fb1611cdbd5742d5cb46037d40) | revision-pinned |
|
|
138
|
+
| oxc_resolver | 11.24.2 | MIT | **MIT** | [crates.io](https://crates.io/crates/oxc_resolver/11.24.2) | 4fa374d03b255c070a32ae65b8a05231b8e658104d6ef22034c09da8fa0c2fd9 |
|
|
139
|
+
| oxc_schemars_derive | 0.8.26 | MIT | **MIT** | [crates.io](https://crates.io/crates/oxc_schemars_derive/0.8.26) | 7f486258afefa5e80939dcff5d42c3a69e8ce4758e5270c3fb855bd45e8c7dd9 |
|
|
140
|
+
| oxc_semantic | 0.140.0 | MIT | **MIT** | [OXC 8e0ed2ebb961](https://github.com/oxc-project/oxc/tree/8e0ed2ebb96137fb1611cdbd5742d5cb46037d40) | revision-pinned |
|
|
141
|
+
| oxc_span | 0.140.0 | MIT | **MIT** | [OXC 8e0ed2ebb961](https://github.com/oxc-project/oxc/tree/8e0ed2ebb96137fb1611cdbd5742d5cb46037d40) | revision-pinned |
|
|
142
|
+
| oxc_str | 0.140.0 | MIT | **MIT** | [OXC 8e0ed2ebb961](https://github.com/oxc-project/oxc/tree/8e0ed2ebb96137fb1611cdbd5742d5cb46037d40) | revision-pinned |
|
|
143
|
+
| oxc_syntax | 0.140.0 | MIT | **MIT** | [OXC 8e0ed2ebb961](https://github.com/oxc-project/oxc/tree/8e0ed2ebb96137fb1611cdbd5742d5cb46037d40) | revision-pinned |
|
|
144
|
+
| oxc-miette-derive | 3.0.0 | Apache-2.0 | **Apache-2.0** | [crates.io](https://crates.io/crates/oxc-miette-derive/3.0.0) | 66e0bafc397eee2f94c5bf89bb5a82ba6d522d1b79e2924c8169f053febb433f |
|
|
145
|
+
| oxc-miette | 3.0.0 | Apache-2.0 | **Apache-2.0** | [crates.io](https://crates.io/crates/oxc-miette/3.0.0) | b776084bf11ad750806cb63f9ed2606a12ab374cf458f36a7731eba1f5d753fc |
|
|
146
|
+
| oxc-schemars | 0.9.1 | MIT | **MIT** | [crates.io](https://crates.io/crates/oxc-schemars/0.9.1) | 70beb8d94ce75bafc509dc24824147b18dfbe7786e9afd4b49765b645d9cc505 |
|
|
147
|
+
| papaya | 0.2.4 | MIT | **MIT** | [crates.io](https://crates.io/crates/papaya/0.2.4) | 997ee03cd38c01469a7046643714f0ad28880bcb9e6679ff0666e24817ca19b7 |
|
|
148
|
+
| parking_lot_core | 0.9.12 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/parking_lot_core/0.9.12) | 2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1 |
|
|
149
|
+
| percent-encoding | 2.3.2 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/percent-encoding/2.3.2) | 9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220 |
|
|
150
|
+
| petgraph | 0.8.3 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/petgraph/0.8.3) | 8701b58ea97060d5e5b155d383a69952a60943f0e6dfe30b04c287beb0b27455 |
|
|
151
|
+
| phf_generator | 0.14.0 | MIT | **MIT** | [crates.io](https://crates.io/crates/phf_generator/0.14.0) | aeb62e0959d5a1bebc965f4d15d9e2b7cea002b6b0f5ba8cde6cc26738467100 |
|
|
152
|
+
| phf_macros | 0.14.0 | MIT | **MIT** | [crates.io](https://crates.io/crates/phf_macros/0.14.0) | 5fa8d0ca26d424d27630da600c6624696e7dec8bf7b3b492b383c5dc49e5e085 |
|
|
153
|
+
| phf_shared | 0.14.0 | MIT | **MIT** | [crates.io](https://crates.io/crates/phf_shared/0.14.0) | c6fd9027e2d9319be6349febd1db4e8d02aa544921200c9b777720ac34a3aa89 |
|
|
154
|
+
| phf | 0.14.0 | MIT | **MIT** | [crates.io](https://crates.io/crates/phf/0.14.0) | 010378780309880b08997fae13be7834dba947d36393bd372f2b1556deb2a2f6 |
|
|
155
|
+
| pin-project-lite | 0.2.17 | Apache-2.0 OR MIT | **MIT** | [crates.io](https://crates.io/crates/pin-project-lite/0.2.17) | a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd |
|
|
156
|
+
| potential_utf | 0.1.5 | Unicode-3.0 | **Unicode-3.0** | [crates.io](https://crates.io/crates/potential_utf/0.1.5) | 0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564 |
|
|
157
|
+
| proc-macro2 | 1.0.106 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/proc-macro2/1.0.106) | 8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934 |
|
|
158
|
+
| quote | 1.0.46 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/quote/1.0.46) | dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368 |
|
|
159
|
+
| rayon-core | 1.13.0 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/rayon-core/1.13.0) | 22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91 |
|
|
160
|
+
| rayon | 1.12.0 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/rayon/1.12.0) | fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d |
|
|
161
|
+
| redox_syscall | 0.5.17 | MIT | **MIT** | [crates.io](https://crates.io/crates/redox_syscall/0.5.17) | 5407465600fb0548f1442edf71dd20683c6ed326200ace4b1ef0763521bb3b77 |
|
|
162
|
+
| ref-cast-impl | 1.0.25 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/ref-cast-impl/1.0.25) | b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da |
|
|
163
|
+
| ref-cast | 1.0.25 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/ref-cast/1.0.25) | f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d |
|
|
164
|
+
| regex-automata | 0.4.16 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/regex-automata/0.4.16) | 8fcfdb36bda0c880c5931cdc7a2bcdc8ba4556847b9d912bca70bc94708711ad |
|
|
165
|
+
| regex-syntax | 0.8.11 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/regex-syntax/0.8.11) | d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4 |
|
|
166
|
+
| regex | 1.13.1 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/regex/1.13.1) | f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d |
|
|
167
|
+
| rust-lapper | 1.3.0 | MIT | **MIT** | [crates.io](https://crates.io/crates/rust-lapper/1.3.0) | 5aafed57460ca80eb88c33989af3a31348dbde8e68f86f4fe2107c1a5fcd55b8 |
|
|
168
|
+
| rustc-hash | 2.1.3 | Apache-2.0 OR MIT | **MIT** | [crates.io](https://crates.io/crates/rustc-hash/2.1.3) | 6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d |
|
|
169
|
+
| rustix | 1.1.4 | Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT | **MIT** | [crates.io](https://crates.io/crates/rustix/1.1.4) | b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190 |
|
|
170
|
+
| rustversion | 1.0.23 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/rustversion/1.0.23) | cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f |
|
|
171
|
+
| ryu | 1.0.23 | Apache-2.0 OR BSL-1.0 | **Apache-2.0** | [crates.io](https://crates.io/crates/ryu/1.0.23) | 9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f |
|
|
172
|
+
| same-file | 1.0.6 | Unlicense/MIT | **MIT** | [crates.io](https://crates.io/crates/same-file/1.0.6) | 93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502 |
|
|
173
|
+
| scopeguard | 1.2.0 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/scopeguard/1.2.0) | 94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49 |
|
|
174
|
+
| seize | 0.5.1 | MIT | **MIT** | [crates.io](https://crates.io/crates/seize/0.5.1) | 5b55fb86dfd3a2f5f76ea78310a88f96c4ea21a3031f8d212443d56123fd0521 |
|
|
175
|
+
| self_cell | 1.2.2 | Apache-2.0 OR GPL-2.0-only | **Apache-2.0** | [crates.io](https://crates.io/crates/self_cell/1.2.2) | b12e76d157a900eb52e81bc6e9f3069344290341720e9178cde2407113ac8d89 |
|
|
176
|
+
| semver | 1.0.28 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/semver/1.0.28) | 8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd |
|
|
177
|
+
| seq-macro | 0.3.6 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/seq-macro/0.3.6) | 1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc |
|
|
178
|
+
| serde_core | 1.0.228 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/serde_core/1.0.228) | 41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad |
|
|
179
|
+
| serde_derive_internals | 0.29.1 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/serde_derive_internals/0.29.1) | 18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711 |
|
|
180
|
+
| serde_derive | 1.0.228 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/serde_derive/1.0.228) | d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79 |
|
|
181
|
+
| serde_json | 1.0.150 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/serde_json/1.0.150) | e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9 |
|
|
182
|
+
| serde | 1.0.228 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/serde/1.0.228) | 9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e |
|
|
183
|
+
| shlex | 2.0.1 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/shlex/2.0.1) | f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba |
|
|
184
|
+
| simd-json | 0.17.3 | Apache-2.0 OR MIT | **MIT** | [crates.io](https://crates.io/crates/simd-json/0.17.3) | e32d7ab2678282d21e53374fbead7119b7eacbede73685dcaac472870a29a11c |
|
|
185
|
+
| simdutf8 | 0.1.5 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/simdutf8/0.1.5) | e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e |
|
|
186
|
+
| siphasher | 1.0.3 | MIT/Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/siphasher/1.0.3) | 8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649 |
|
|
187
|
+
| slab | 0.4.12 | MIT | **MIT** | [crates.io](https://crates.io/crates/slab/0.4.12) | 0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5 |
|
|
188
|
+
| smallvec | 1.15.2 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/smallvec/1.15.2) | 8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90 |
|
|
189
|
+
| smawk | 0.3.3 | MIT | **MIT** | [crates.io](https://crates.io/crates/smawk/0.3.3) | e8e2fb0f499abb4d162f2bedad68f5ef91a1682b5a03596ddb67efd37768d100 |
|
|
190
|
+
| stable_deref_trait | 1.2.1 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/stable_deref_trait/1.2.1) | 6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596 |
|
|
191
|
+
| static_assertions | 1.1.0 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/static_assertions/1.1.0) | a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f |
|
|
192
|
+
| syn | 2.0.119 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/syn/2.0.119) | 872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297 |
|
|
193
|
+
| sync_wrapper | 1.0.2 | Apache-2.0 | **Apache-2.0** | [crates.io](https://crates.io/crates/sync_wrapper/1.0.2) | 0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263 |
|
|
194
|
+
| synstructure | 0.13.2 | MIT | **MIT** | [crates.io](https://crates.io/crates/synstructure/0.13.2) | 728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2 |
|
|
195
|
+
| textwrap | 0.16.2 | MIT | **MIT** | [crates.io](https://crates.io/crates/textwrap/0.16.2) | c13547615a44dc9c452a8a534638acdf07120d4b6847c8178705da06306a3057 |
|
|
196
|
+
| thiserror-impl | 2.0.18 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/thiserror-impl/2.0.18) | ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5 |
|
|
197
|
+
| thiserror | 2.0.18 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/thiserror/2.0.18) | 4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4 |
|
|
198
|
+
| tinystr | 0.8.3 | Unicode-3.0 | **Unicode-3.0** | [crates.io](https://crates.io/crates/tinystr/0.8.3) | c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d |
|
|
199
|
+
| tokio-macros | 2.7.0 | MIT | **MIT** | [crates.io](https://crates.io/crates/tokio-macros/2.7.0) | 385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496 |
|
|
200
|
+
| tokio-util | 0.7.18 | MIT | **MIT** | [crates.io](https://crates.io/crates/tokio-util/0.7.18) | 9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098 |
|
|
201
|
+
| tokio | 1.52.4 | MIT | **MIT** | [crates.io](https://crates.io/crates/tokio/1.52.4) | 317fafbbe3f02fc663dad00ea6186197de963cd4190e86a26d8d0fae095539af |
|
|
202
|
+
| tower-layer | 0.3.3 | MIT | **MIT** | [crates.io](https://crates.io/crates/tower-layer/0.3.3) | 121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e |
|
|
203
|
+
| tower-lsp-server | 0.23.0 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/tower-lsp-server/0.23.0) | 2f0e711655c89181a6bc6a2cc348131fcd9680085f5b06b6af13427a393a6e72 |
|
|
204
|
+
| tower-service | 0.3.3 | MIT | **MIT** | [crates.io](https://crates.io/crates/tower-service/0.3.3) | 8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3 |
|
|
205
|
+
| tower | 0.5.3 | MIT | **MIT** | [crates.io](https://crates.io/crates/tower/0.5.3) | ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4 |
|
|
206
|
+
| tracing-attributes | 0.1.31 | MIT | **MIT** | [crates.io](https://crates.io/crates/tracing-attributes/0.1.31) | 7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da |
|
|
207
|
+
| tracing-core | 0.1.36 | MIT | **MIT** | [crates.io](https://crates.io/crates/tracing-core/0.1.36) | db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a |
|
|
208
|
+
| tracing | 0.1.44 | MIT | **MIT** | [crates.io](https://crates.io/crates/tracing/0.1.44) | 63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100 |
|
|
209
|
+
| unicode-id-start | 1.4.0 | (MIT OR Apache-2.0) AND Unicode-3.0 | **MIT AND Unicode-3.0** | [crates.io](https://crates.io/crates/unicode-id-start/1.4.0) | 81b79ad29b5e19de4260020f8919b443b2ef0277d242ce532ec7b7a2cc8b6007 |
|
|
210
|
+
| unicode-id | 0.3.6 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/unicode-id/0.3.6) | 70ba288e709927c043cbe476718d37be306be53fb1fafecd0dbe36d072be2580 |
|
|
211
|
+
| unicode-ident | 1.0.24 | (MIT OR Apache-2.0) AND Unicode-3.0 | **MIT AND Unicode-3.0** | [crates.io](https://crates.io/crates/unicode-ident/1.0.24) | e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75 |
|
|
212
|
+
| unicode-linebreak | 0.1.5 | Apache-2.0 | **Apache-2.0** | [crates.io](https://crates.io/crates/unicode-linebreak/0.1.5) | 3b09c83c3c29d37506a3e260c08c03743a6bb66a9cd432c6934ab501a190571f |
|
|
213
|
+
| unicode-segmentation | 1.13.3 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/unicode-segmentation/1.13.3) | c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8 |
|
|
214
|
+
| unicode-width | 0.2.2 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/unicode-width/0.2.2) | b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254 |
|
|
215
|
+
| url | 2.5.8 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/url/2.5.8) | ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed |
|
|
216
|
+
| utf8_iter | 1.0.4 | Apache-2.0 OR MIT | **MIT** | [crates.io](https://crates.io/crates/utf8_iter/1.0.4) | b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be |
|
|
217
|
+
| value-trait | 0.12.2 | Apache-2.0/MIT | **MIT** | [crates.io](https://crates.io/crates/value-trait/0.12.2) | f3f4b4a98dfe54bc9ed3641af7ffcb837240269627dbd5cb047d13daa39736cc |
|
|
218
|
+
| walkdir | 2.5.0 | Unlicense/MIT | **MIT** | [crates.io](https://crates.io/crates/walkdir/2.5.0) | 29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b |
|
|
219
|
+
| winapi-util | 0.1.11 | Unlicense OR MIT | **MIT** | [crates.io](https://crates.io/crates/winapi-util/0.1.11) | c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22 |
|
|
220
|
+
| windows-collections | 0.3.2 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/windows-collections/0.3.2) | 23b2d95af1a8a14a3c7367e1ed4fc9c20e0a26e79551b1454d72583c97cc6610 |
|
|
221
|
+
| windows-core | 0.62.2 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/windows-core/0.62.2) | b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb |
|
|
222
|
+
| windows-future | 0.3.2 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/windows-future/0.3.2) | e1d6f90251fe18a279739e78025bd6ddc52a7e22f921070ccdc67dde84c605cb |
|
|
223
|
+
| windows-implement | 0.60.2 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/windows-implement/0.60.2) | 053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf |
|
|
224
|
+
| windows-interface | 0.59.3 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/windows-interface/0.59.3) | 3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358 |
|
|
225
|
+
| windows-link | 0.2.1 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/windows-link/0.2.1) | f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5 |
|
|
226
|
+
| windows-numerics | 0.3.1 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/windows-numerics/0.3.1) | 6e2e40844ac143cdb44aead537bbf727de9b044e107a0f1220392177d15b0f26 |
|
|
227
|
+
| windows-result | 0.4.1 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/windows-result/0.4.1) | 7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5 |
|
|
228
|
+
| windows-strings | 0.5.1 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/windows-strings/0.5.1) | 7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091 |
|
|
229
|
+
| windows-sys | 0.61.2 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/windows-sys/0.61.2) | ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc |
|
|
230
|
+
| windows-threading | 0.2.1 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/windows-threading/0.2.1) | 3949bd5b99cafdf1c7ca86b43ca564028dfe27d66958f2470940f73d86d75b37 |
|
|
231
|
+
| windows | 0.62.2 | MIT OR Apache-2.0 | **MIT** | [crates.io](https://crates.io/crates/windows/0.62.2) | 527fadee13e0c05939a6a05d5bd6eec6cd2e3dbd648b9f8e447c6518133d8580 |
|
|
232
|
+
| writeable | 0.6.3 | Unicode-3.0 | **Unicode-3.0** | [crates.io](https://crates.io/crates/writeable/0.6.3) | 1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4 |
|
|
233
|
+
| yoke-derive | 0.8.2 | Unicode-3.0 | **Unicode-3.0** | [crates.io](https://crates.io/crates/yoke-derive/0.8.2) | de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e |
|
|
234
|
+
| yoke | 0.8.3 | Unicode-3.0 | **Unicode-3.0** | [crates.io](https://crates.io/crates/yoke/0.8.3) | 709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5 |
|
|
235
|
+
| zerofrom-derive | 0.1.7 | Unicode-3.0 | **Unicode-3.0** | [crates.io](https://crates.io/crates/zerofrom-derive/0.1.7) | 11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1 |
|
|
236
|
+
| zerofrom | 0.1.8 | Unicode-3.0 | **Unicode-3.0** | [crates.io](https://crates.io/crates/zerofrom/0.1.8) | 0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272 |
|
|
237
|
+
| zerotrie | 0.2.4 | Unicode-3.0 | **Unicode-3.0** | [crates.io](https://crates.io/crates/zerotrie/0.2.4) | 0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf |
|
|
238
|
+
| zerovec-derive | 0.11.3 | Unicode-3.0 | **Unicode-3.0** | [crates.io](https://crates.io/crates/zerovec-derive/0.11.3) | 625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555 |
|
|
239
|
+
| zerovec | 0.11.6 | Unicode-3.0 | **Unicode-3.0** | [crates.io](https://crates.io/crates/zerovec/0.11.6) | 90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239 |
|
|
240
|
+
| zmij | 1.0.23 | MIT | **MIT** | [crates.io](https://crates.io/crates/zmij/1.0.23) | 29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b |
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 1,
|
|
3
|
+
"policy": "Every exact Cargo license expression in a shipping dependency requires review. An OXC or Cargo.lock upgrade fails closed when it introduces a new expression.",
|
|
4
|
+
"allowedExpressions": [
|
|
5
|
+
"(MIT OR Apache-2.0) AND Unicode-3.0",
|
|
6
|
+
"Apache-2.0",
|
|
7
|
+
"Apache-2.0 OR BSL-1.0",
|
|
8
|
+
"Apache-2.0 OR GPL-2.0-only",
|
|
9
|
+
"Apache-2.0 OR MIT",
|
|
10
|
+
"Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT",
|
|
11
|
+
"Apache-2.0 WITH LLVM-exception OR BSL-1.0",
|
|
12
|
+
"Apache-2.0/MIT",
|
|
13
|
+
"ISC",
|
|
14
|
+
"MIT",
|
|
15
|
+
"MIT OR Apache-2.0",
|
|
16
|
+
"MIT-0",
|
|
17
|
+
"MIT/Apache-2.0",
|
|
18
|
+
"Unicode-3.0",
|
|
19
|
+
"Unlicense OR MIT",
|
|
20
|
+
"Unlicense/MIT",
|
|
21
|
+
"Zlib"
|
|
22
|
+
],
|
|
23
|
+
"selectedDistributionLicenseByExpression": {
|
|
24
|
+
"(MIT OR Apache-2.0) AND Unicode-3.0": "MIT AND Unicode-3.0",
|
|
25
|
+
"Apache-2.0": "Apache-2.0",
|
|
26
|
+
"Apache-2.0 OR BSL-1.0": "Apache-2.0",
|
|
27
|
+
"Apache-2.0 OR GPL-2.0-only": "Apache-2.0",
|
|
28
|
+
"Apache-2.0 OR MIT": "MIT",
|
|
29
|
+
"Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT": "MIT",
|
|
30
|
+
"Apache-2.0 WITH LLVM-exception OR BSL-1.0": "BSL-1.0",
|
|
31
|
+
"Apache-2.0/MIT": "MIT",
|
|
32
|
+
"ISC": "ISC",
|
|
33
|
+
"MIT": "MIT",
|
|
34
|
+
"MIT OR Apache-2.0": "MIT",
|
|
35
|
+
"MIT-0": "MIT-0",
|
|
36
|
+
"MIT/Apache-2.0": "MIT",
|
|
37
|
+
"Unicode-3.0": "Unicode-3.0",
|
|
38
|
+
"Unlicense OR MIT": "MIT",
|
|
39
|
+
"Unlicense/MIT": "MIT",
|
|
40
|
+
"Zlib": "Zlib"
|
|
41
|
+
}
|
|
42
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2024-present VoidZero Inc. & Contributors
|
|
4
|
+
Copyright (c) 2023 Boshen
|
|
5
|
+
|
|
6
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
8
|
+
in the Software without restriction, including without limitation the rights
|
|
9
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
10
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
11
|
+
furnished to do so, subject to the following conditions:
|
|
12
|
+
|
|
13
|
+
The above copyright notice and this permission notice shall be included in all
|
|
14
|
+
copies or substantial portions of the Software.
|
|
15
|
+
|
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
17
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
18
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
19
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
20
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
21
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
22
|
+
SOFTWARE.
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 1,
|
|
3
|
+
"project": "OXC",
|
|
4
|
+
"repository": "https://github.com/oxc-project/oxc",
|
|
5
|
+
"revision": "8e0ed2ebb96137fb1611cdbd5742d5cb46037d40",
|
|
6
|
+
"files": {
|
|
7
|
+
"LICENSE": {
|
|
8
|
+
"source": "https://raw.githubusercontent.com/oxc-project/oxc/8e0ed2ebb96137fb1611cdbd5742d5cb46037d40/LICENSE",
|
|
9
|
+
"sha256": "95ced5ecf1133fbf41d409b5555c86c344f83f3b019926057ddbc07cfdcc27b3"
|
|
10
|
+
},
|
|
11
|
+
"THIRD-PARTY-LICENSE": {
|
|
12
|
+
"source": "https://raw.githubusercontent.com/oxc-project/oxc/8e0ed2ebb96137fb1611cdbd5742d5cb46037d40/THIRD-PARTY-LICENSE",
|
|
13
|
+
"sha256": "77643247a04db72198cea3c8b73751091821b4d51b5448fd65501127a9db5111"
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
}
|