2023-07-03 20:16:09 +02:00
|
|
|
# This file is automatically @generated by Cargo.
|
|
|
|
# It is not intended for manual editing.
|
|
|
|
version = 3
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "aho-corasick"
|
|
|
|
version = "1.0.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "43f6cb1bf222025340178f382c426f13757b2960e89779dfcb319c32542a5a41"
|
|
|
|
dependencies = [
|
|
|
|
"memchr",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "cc"
|
2024-11-09 03:07:45 +01:00
|
|
|
version = "1.1.37"
|
2023-07-03 20:16:09 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-11-09 03:07:45 +01:00
|
|
|
checksum = "40545c26d092346d8a8dab71ee48e7685a7a9cba76e634790c215b41a4a7b4cf"
|
|
|
|
dependencies = [
|
|
|
|
"shlex",
|
|
|
|
]
|
2023-07-03 20:16:09 +02:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "memchr"
|
2024-11-09 03:07:45 +01:00
|
|
|
version = "2.7.4"
|
2023-07-03 20:16:09 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-11-09 03:07:45 +01:00
|
|
|
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
|
2023-07-03 20:16:09 +02:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "regex"
|
2024-11-09 03:07:45 +01:00
|
|
|
version = "1.11.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
|
|
|
|
dependencies = [
|
|
|
|
"aho-corasick",
|
|
|
|
"memchr",
|
|
|
|
"regex-automata",
|
|
|
|
"regex-syntax",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "regex-automata"
|
|
|
|
version = "0.4.8"
|
2023-07-03 20:16:09 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-11-09 03:07:45 +01:00
|
|
|
checksum = "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3"
|
2023-07-03 20:16:09 +02:00
|
|
|
dependencies = [
|
|
|
|
"aho-corasick",
|
|
|
|
"memchr",
|
|
|
|
"regex-syntax",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "regex-syntax"
|
2024-11-09 03:07:45 +01:00
|
|
|
version = "0.8.5"
|
2023-07-03 20:16:09 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-11-09 03:07:45 +01:00
|
|
|
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "shlex"
|
|
|
|
version = "1.3.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "streaming-iterator"
|
|
|
|
version = "0.1.9"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "2b2231b7c3057d5e4ad0156fb3dc807d900806020c5ffa3ee6ff2c8c76fb8520"
|
2023-07-03 20:16:09 +02:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "tree-sitter"
|
2024-11-09 03:07:45 +01:00
|
|
|
version = "0.24.3"
|
2023-07-03 20:16:09 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-11-09 03:07:45 +01:00
|
|
|
checksum = "f9871f16d6cf5c4757dcf30d5d2172a2df6987c510c017bbb7abfb7f9aa24d06"
|
2023-07-03 20:16:09 +02:00
|
|
|
dependencies = [
|
|
|
|
"cc",
|
|
|
|
"regex",
|
2024-11-09 03:07:45 +01:00
|
|
|
"regex-syntax",
|
|
|
|
"streaming-iterator",
|
|
|
|
"tree-sitter-language",
|
2023-07-03 20:16:09 +02:00
|
|
|
]
|
|
|
|
|
2024-11-09 03:07:45 +01:00
|
|
|
[[package]]
|
|
|
|
name = "tree-sitter-language"
|
|
|
|
version = "0.1.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "e8ddffe35a0e5eeeadf13ff7350af564c6e73993a24db62caee1822b185c2600"
|
|
|
|
|
2023-07-03 20:16:09 +02:00
|
|
|
[[package]]
|
|
|
|
name = "tree-sitter-rhai"
|
|
|
|
version = "0.0.1"
|
|
|
|
dependencies = [
|
|
|
|
"cc",
|
|
|
|
"tree-sitter",
|
|
|
|
]
|