visualize tree-sitter trees and queries
1# This file is automatically @generated by Cargo. 2# It is not intended for manual editing. 3version = 3 4 5[[package]] 6name = "aho-corasick" 7version = "1.1.3" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" 10dependencies = [ 11 "memchr", 12] 13 14[[package]] 15name = "bitflags" 16version = "1.3.2" 17source = "registry+https://github.com/rust-lang/crates.io-index" 18checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 19 20[[package]] 21name = "cc" 22version = "1.0.106" 23source = "registry+https://github.com/rust-lang/crates.io-index" 24checksum = "066fce287b1d4eafef758e89e09d724a24808a9196fe9756b8ca90e86d0719a2" 25 26[[package]] 27name = "cfg-if" 28version = "1.0.0" 29source = "registry+https://github.com/rust-lang/crates.io-index" 30checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 31 32[[package]] 33name = "console" 34version = "0.15.8" 35source = "registry+https://github.com/rust-lang/crates.io-index" 36checksum = "0e1f83fc076bd6dd27517eacdf25fef6c4dfe5f1d7448bafaaf3a26f13b5e4eb" 37dependencies = [ 38 "encode_unicode", 39 "lazy_static", 40 "libc", 41 "unicode-width", 42 "windows-sys 0.52.0", 43] 44 45[[package]] 46name = "encode_unicode" 47version = "0.3.6" 48source = "registry+https://github.com/rust-lang/crates.io-index" 49checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" 50 51[[package]] 52name = "filetime" 53version = "0.2.23" 54source = "registry+https://github.com/rust-lang/crates.io-index" 55checksum = "1ee447700ac8aa0b2f2bd7bc4462ad686ba06baa6727ac149a2d6277f0d240fd" 56dependencies = [ 57 "cfg-if", 58 "libc", 59 "redox_syscall", 60 "windows-sys 0.52.0", 61] 62 63[[package]] 64name = "inotify" 65version = "0.9.6" 66source = "registry+https://github.com/rust-lang/crates.io-index" 67checksum = "f8069d3ec154eb856955c1c0fbffefbf5f3c40a104ec912d4797314c1801abff" 68dependencies = [ 69 "bitflags", 70 "inotify-sys", 71 "libc", 72] 73 74[[package]] 75name = "inotify-sys" 76version = "0.1.5" 77source = "registry+https://github.com/rust-lang/crates.io-index" 78checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb" 79dependencies = [ 80 "libc", 81] 82 83[[package]] 84name = "kqueue" 85version = "1.0.8" 86source = "registry+https://github.com/rust-lang/crates.io-index" 87checksum = "7447f1ca1b7b563588a205fe93dea8df60fd981423a768bc1c0ded35ed147d0c" 88dependencies = [ 89 "kqueue-sys", 90 "libc", 91] 92 93[[package]] 94name = "kqueue-sys" 95version = "1.0.4" 96source = "registry+https://github.com/rust-lang/crates.io-index" 97checksum = "ed9625ffda8729b85e45cf04090035ac368927b8cebc34898e7c120f52e4838b" 98dependencies = [ 99 "bitflags", 100 "libc", 101] 102 103[[package]] 104name = "lazy_static" 105version = "1.5.0" 106source = "registry+https://github.com/rust-lang/crates.io-index" 107checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" 108 109[[package]] 110name = "libc" 111version = "0.2.155" 112source = "registry+https://github.com/rust-lang/crates.io-index" 113checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c" 114 115[[package]] 116name = "log" 117version = "0.4.22" 118source = "registry+https://github.com/rust-lang/crates.io-index" 119checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24" 120 121[[package]] 122name = "memchr" 123version = "2.7.4" 124source = "registry+https://github.com/rust-lang/crates.io-index" 125checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" 126 127[[package]] 128name = "mio" 129version = "0.8.11" 130source = "registry+https://github.com/rust-lang/crates.io-index" 131checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" 132dependencies = [ 133 "libc", 134 "log", 135 "wasi", 136 "windows-sys 0.48.0", 137] 138 139[[package]] 140name = "notify" 141version = "5.2.0" 142source = "registry+https://github.com/rust-lang/crates.io-index" 143checksum = "729f63e1ca555a43fe3efa4f3efdf4801c479da85b432242a7b726f353c88486" 144dependencies = [ 145 "bitflags", 146 "filetime", 147 "inotify", 148 "kqueue", 149 "libc", 150 "mio", 151 "walkdir", 152 "windows-sys 0.45.0", 153] 154 155[[package]] 156name = "redox_syscall" 157version = "0.4.1" 158source = "registry+https://github.com/rust-lang/crates.io-index" 159checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" 160dependencies = [ 161 "bitflags", 162] 163 164[[package]] 165name = "regex" 166version = "1.10.5" 167source = "registry+https://github.com/rust-lang/crates.io-index" 168checksum = "b91213439dad192326a0d7c6ee3955910425f441d7038e0d6933b0aec5c4517f" 169dependencies = [ 170 "aho-corasick", 171 "memchr", 172 "regex-automata", 173 "regex-syntax", 174] 175 176[[package]] 177name = "regex-automata" 178version = "0.4.7" 179source = "registry+https://github.com/rust-lang/crates.io-index" 180checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df" 181dependencies = [ 182 "aho-corasick", 183 "memchr", 184 "regex-syntax", 185] 186 187[[package]] 188name = "regex-syntax" 189version = "0.8.4" 190source = "registry+https://github.com/rust-lang/crates.io-index" 191checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b" 192 193[[package]] 194name = "same-file" 195version = "1.0.6" 196source = "registry+https://github.com/rust-lang/crates.io-index" 197checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 198dependencies = [ 199 "winapi-util", 200] 201 202[[package]] 203name = "tree-sitter" 204version = "0.20.10" 205source = "registry+https://github.com/rust-lang/crates.io-index" 206checksum = "e747b1f9b7b931ed39a548c1fae149101497de3c1fc8d9e18c62c1a66c683d3d" 207dependencies = [ 208 "cc", 209 "regex", 210] 211 212[[package]] 213name = "tree-sitter" 214version = "0.21.0" 215source = "registry+https://github.com/rust-lang/crates.io-index" 216checksum = "705bf7c0958d0171dd7d3a6542f2f4f21d87ed5f1dc8db52919d3a6bed9a359a" 217dependencies = [ 218 "cc", 219 "regex", 220] 221 222[[package]] 223name = "tree-sitter-elm" 224version = "5.7.0" 225source = "registry+https://github.com/rust-lang/crates.io-index" 226checksum = "1ee736eec2208cd9ea7f2bf1af505c27df03edaed8c7bac38c29f2b147c6035d" 227dependencies = [ 228 "cc", 229 "tree-sitter 0.20.10", 230] 231 232[[package]] 233name = "tree-sitter-go" 234version = "0.20.0" 235source = "registry+https://github.com/rust-lang/crates.io-index" 236checksum = "1ad6d11f19441b961af2fda7f12f5d0dac325f6d6de83836a1d3750018cc5114" 237dependencies = [ 238 "cc", 239 "tree-sitter 0.20.10", 240] 241 242[[package]] 243name = "tree-sitter-javascript" 244version = "0.20.4" 245source = "registry+https://github.com/rust-lang/crates.io-index" 246checksum = "d015c02ea98b62c806f7329ff71c383286dfc3a7a7da0cc484f6e42922f73c2c" 247dependencies = [ 248 "cc", 249 "tree-sitter 0.20.10", 250] 251 252[[package]] 253name = "tree-sitter-json" 254version = "0.21.0" 255source = "git+https://github.com/tree-sitter/tree-sitter-json#94f5c527b2965465956c2000ed6134dd24daf2a7" 256dependencies = [ 257 "cc", 258 "tree-sitter 0.21.0", 259] 260 261[[package]] 262name = "tree-sitter-md" 263version = "0.1.7" 264source = "registry+https://github.com/rust-lang/crates.io-index" 265checksum = "3c20d3ef8d202430b644a307e6299d84bf8ed87fa1b796e4638f8805a595060c" 266dependencies = [ 267 "cc", 268 "tree-sitter 0.20.10", 269] 270 271[[package]] 272name = "tree-sitter-mdx" 273version = "0.0.1" 274source = "git+https://github.com/jlopezcur/tree-sitter-mdx#df43681bff333228fa60b69c09a1e7a6f9ed1610" 275dependencies = [ 276 "cc", 277 "tree-sitter 0.20.10", 278] 279 280[[package]] 281name = "tree-sitter-python" 282version = "0.20.4" 283source = "registry+https://github.com/rust-lang/crates.io-index" 284checksum = "e6c93b1b1fbd0d399db3445f51fd3058e43d0b4dcff62ddbdb46e66550978aa5" 285dependencies = [ 286 "cc", 287 "tree-sitter 0.20.10", 288] 289 290[[package]] 291name = "tree-sitter-ruby" 292version = "0.20.1" 293source = "registry+https://github.com/rust-lang/crates.io-index" 294checksum = "44d50ef383469df8485f024c5fb01faced8cb90368192a7ba02605b43b2427fe" 295dependencies = [ 296 "cc", 297 "tree-sitter 0.20.10", 298] 299 300[[package]] 301name = "tree-sitter-rust" 302version = "0.20.4" 303source = "registry+https://github.com/rust-lang/crates.io-index" 304checksum = "b0832309b0b2b6d33760ce5c0e818cb47e1d72b468516bfe4134408926fa7594" 305dependencies = [ 306 "cc", 307 "tree-sitter 0.20.10", 308] 309 310[[package]] 311name = "tree-sitter-typescript" 312version = "0.20.5" 313source = "registry+https://github.com/rust-lang/crates.io-index" 314checksum = "c8bc1d2c24276a48ef097a71b56888ac9db63717e8f8d0b324668a27fd619670" 315dependencies = [ 316 "cc", 317 "tree-sitter 0.20.10", 318] 319 320[[package]] 321name = "tree-viz" 322version = "0.1.0" 323dependencies = [ 324 "console", 325 "notify", 326 "tree-sitter 0.20.10", 327 "tree-sitter-elm", 328 "tree-sitter-go", 329 "tree-sitter-javascript", 330 "tree-sitter-json", 331 "tree-sitter-md", 332 "tree-sitter-mdx", 333 "tree-sitter-python", 334 "tree-sitter-ruby", 335 "tree-sitter-rust", 336 "tree-sitter-typescript", 337] 338 339[[package]] 340name = "unicode-width" 341version = "0.1.13" 342source = "registry+https://github.com/rust-lang/crates.io-index" 343checksum = "0336d538f7abc86d282a4189614dfaa90810dfc2c6f6427eaf88e16311dd225d" 344 345[[package]] 346name = "walkdir" 347version = "2.5.0" 348source = "registry+https://github.com/rust-lang/crates.io-index" 349checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" 350dependencies = [ 351 "same-file", 352 "winapi-util", 353] 354 355[[package]] 356name = "wasi" 357version = "0.11.0+wasi-snapshot-preview1" 358source = "registry+https://github.com/rust-lang/crates.io-index" 359checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 360 361[[package]] 362name = "winapi-util" 363version = "0.1.8" 364source = "registry+https://github.com/rust-lang/crates.io-index" 365checksum = "4d4cc384e1e73b93bafa6fb4f1df8c41695c8a91cf9c4c64358067d15a7b6c6b" 366dependencies = [ 367 "windows-sys 0.52.0", 368] 369 370[[package]] 371name = "windows-sys" 372version = "0.45.0" 373source = "registry+https://github.com/rust-lang/crates.io-index" 374checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 375dependencies = [ 376 "windows-targets 0.42.2", 377] 378 379[[package]] 380name = "windows-sys" 381version = "0.48.0" 382source = "registry+https://github.com/rust-lang/crates.io-index" 383checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 384dependencies = [ 385 "windows-targets 0.48.5", 386] 387 388[[package]] 389name = "windows-sys" 390version = "0.52.0" 391source = "registry+https://github.com/rust-lang/crates.io-index" 392checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 393dependencies = [ 394 "windows-targets 0.52.6", 395] 396 397[[package]] 398name = "windows-targets" 399version = "0.42.2" 400source = "registry+https://github.com/rust-lang/crates.io-index" 401checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 402dependencies = [ 403 "windows_aarch64_gnullvm 0.42.2", 404 "windows_aarch64_msvc 0.42.2", 405 "windows_i686_gnu 0.42.2", 406 "windows_i686_msvc 0.42.2", 407 "windows_x86_64_gnu 0.42.2", 408 "windows_x86_64_gnullvm 0.42.2", 409 "windows_x86_64_msvc 0.42.2", 410] 411 412[[package]] 413name = "windows-targets" 414version = "0.48.5" 415source = "registry+https://github.com/rust-lang/crates.io-index" 416checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 417dependencies = [ 418 "windows_aarch64_gnullvm 0.48.5", 419 "windows_aarch64_msvc 0.48.5", 420 "windows_i686_gnu 0.48.5", 421 "windows_i686_msvc 0.48.5", 422 "windows_x86_64_gnu 0.48.5", 423 "windows_x86_64_gnullvm 0.48.5", 424 "windows_x86_64_msvc 0.48.5", 425] 426 427[[package]] 428name = "windows-targets" 429version = "0.52.6" 430source = "registry+https://github.com/rust-lang/crates.io-index" 431checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 432dependencies = [ 433 "windows_aarch64_gnullvm 0.52.6", 434 "windows_aarch64_msvc 0.52.6", 435 "windows_i686_gnu 0.52.6", 436 "windows_i686_gnullvm", 437 "windows_i686_msvc 0.52.6", 438 "windows_x86_64_gnu 0.52.6", 439 "windows_x86_64_gnullvm 0.52.6", 440 "windows_x86_64_msvc 0.52.6", 441] 442 443[[package]] 444name = "windows_aarch64_gnullvm" 445version = "0.42.2" 446source = "registry+https://github.com/rust-lang/crates.io-index" 447checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 448 449[[package]] 450name = "windows_aarch64_gnullvm" 451version = "0.48.5" 452source = "registry+https://github.com/rust-lang/crates.io-index" 453checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 454 455[[package]] 456name = "windows_aarch64_gnullvm" 457version = "0.52.6" 458source = "registry+https://github.com/rust-lang/crates.io-index" 459checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 460 461[[package]] 462name = "windows_aarch64_msvc" 463version = "0.42.2" 464source = "registry+https://github.com/rust-lang/crates.io-index" 465checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 466 467[[package]] 468name = "windows_aarch64_msvc" 469version = "0.48.5" 470source = "registry+https://github.com/rust-lang/crates.io-index" 471checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 472 473[[package]] 474name = "windows_aarch64_msvc" 475version = "0.52.6" 476source = "registry+https://github.com/rust-lang/crates.io-index" 477checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 478 479[[package]] 480name = "windows_i686_gnu" 481version = "0.42.2" 482source = "registry+https://github.com/rust-lang/crates.io-index" 483checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 484 485[[package]] 486name = "windows_i686_gnu" 487version = "0.48.5" 488source = "registry+https://github.com/rust-lang/crates.io-index" 489checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 490 491[[package]] 492name = "windows_i686_gnu" 493version = "0.52.6" 494source = "registry+https://github.com/rust-lang/crates.io-index" 495checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 496 497[[package]] 498name = "windows_i686_gnullvm" 499version = "0.52.6" 500source = "registry+https://github.com/rust-lang/crates.io-index" 501checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 502 503[[package]] 504name = "windows_i686_msvc" 505version = "0.42.2" 506source = "registry+https://github.com/rust-lang/crates.io-index" 507checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 508 509[[package]] 510name = "windows_i686_msvc" 511version = "0.48.5" 512source = "registry+https://github.com/rust-lang/crates.io-index" 513checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 514 515[[package]] 516name = "windows_i686_msvc" 517version = "0.52.6" 518source = "registry+https://github.com/rust-lang/crates.io-index" 519checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 520 521[[package]] 522name = "windows_x86_64_gnu" 523version = "0.42.2" 524source = "registry+https://github.com/rust-lang/crates.io-index" 525checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 526 527[[package]] 528name = "windows_x86_64_gnu" 529version = "0.48.5" 530source = "registry+https://github.com/rust-lang/crates.io-index" 531checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 532 533[[package]] 534name = "windows_x86_64_gnu" 535version = "0.52.6" 536source = "registry+https://github.com/rust-lang/crates.io-index" 537checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 538 539[[package]] 540name = "windows_x86_64_gnullvm" 541version = "0.42.2" 542source = "registry+https://github.com/rust-lang/crates.io-index" 543checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 544 545[[package]] 546name = "windows_x86_64_gnullvm" 547version = "0.48.5" 548source = "registry+https://github.com/rust-lang/crates.io-index" 549checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 550 551[[package]] 552name = "windows_x86_64_gnullvm" 553version = "0.52.6" 554source = "registry+https://github.com/rust-lang/crates.io-index" 555checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 556 557[[package]] 558name = "windows_x86_64_msvc" 559version = "0.42.2" 560source = "registry+https://github.com/rust-lang/crates.io-index" 561checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 562 563[[package]] 564name = "windows_x86_64_msvc" 565version = "0.48.5" 566source = "registry+https://github.com/rust-lang/crates.io-index" 567checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 568 569[[package]] 570name = "windows_x86_64_msvc" 571version = "0.52.6" 572source = "registry+https://github.com/rust-lang/crates.io-index" 573checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"