2022-11-27 06:37:29 +00:00
|
|
|
# This file is automatically @generated by Cargo.
|
|
|
|
# It is not intended for manual editing.
|
|
|
|
version = 3
|
|
|
|
|
2023-01-28 04:15:52 +00:00
|
|
|
[[package]]
|
|
|
|
name = "addr2line"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "0.24.1"
|
2023-01-28 04:15:52 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "f5fb1d8e4442bd405fdfd1dacb42792696b0cf9cb15882e5d097b742a676d375"
|
2023-01-28 04:15:52 +00:00
|
|
|
dependencies = [
|
|
|
|
"gimli",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "adler"
|
|
|
|
version = "1.0.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
|
|
|
|
|
2024-09-10 02:36:18 +00:00
|
|
|
[[package]]
|
|
|
|
name = "adler2"
|
|
|
|
version = "2.0.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
|
|
|
|
|
2024-05-01 06:12:20 +00:00
|
|
|
[[package]]
|
|
|
|
name = "aes"
|
|
|
|
version = "0.8.4"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
|
|
|
|
dependencies = [
|
|
|
|
"cfg-if",
|
|
|
|
"cipher",
|
|
|
|
"cpufeatures",
|
|
|
|
]
|
|
|
|
|
2022-12-10 06:28:23 +00:00
|
|
|
[[package]]
|
|
|
|
name = "ahash"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "0.8.11"
|
2022-12-10 06:28:23 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
|
2022-12-10 06:28:23 +00:00
|
|
|
dependencies = [
|
|
|
|
"cfg-if",
|
|
|
|
"once_cell",
|
|
|
|
"version_check",
|
Load objects from disc image & `vfs` module
Revamps support for container paths and centralizes logic into a VFS (virtual file system) module.
The new VFS architecture supports disc images and any layer of nesting.
For example, the following command works:
`dtk dol info 'Interactive Multi-Game Demo Disc - July 2002 (USA).rvz:files/zz_StarFox051702_e3.tgc:files/default.dol'`
This opens a TGC file inside an RVZ disc image, then reads `default.dol` in the FST.
Another example:
`dtk rel info 'Legend of Zelda, The - The Wind Waker (USA).rvz:files/RELS.arc:mmem/f_pc_profile_lst.rel'`
This opens a RARC archive inside an RVZ disc image, loads the Yaz0-compressed REL and
decompresses it on the fly.
This all operates in memory with minimal overhead, with no need to extract temporary files.
Supported container formats:
- Disc images (ISO/GCM, WIA/RVZ, WBFS, CISO, NFS, GCZ, TGC)
- RARC/SZS and U8 (.arc)
Supported compression formats:
- Yaz0 (SZS)
- Yay0 (SZP)
- NLZSS (.lz)
Additionally, projects can utilize a new configuration key `object_base`:
```
object: orig/GZLE01/sys/main.dol
modules:
- object: orig/GZLE01/files/RELS.arc:rels/mmem/f_pc_profile_lst.rel
```
becomes
```
object_base: orig/GZLE01
object: sys/main.dol
modules:
- object: files/RELS.arc:mmem/f_pc_profile_lst.rel
```
When loading the objects, decomp-toolkit will automatically check the `object_base`
directory for any disc images. (They can be named anything, but must be in the folder
root) If one is found, all objects will be fetched from the disc image itself, rather
than having to extract the files manually.
While still a work in progress, two new `vfs` commands were added: `vfs ls` and `vfs cp`.
These commands are very barebones currently, but allow listing directory contents and
extracting files from decomp-toolkit's vfs representation:
```
❯ dtk vfs ls disc.rvz:
files
sys
❯ dtk vfs ls disc.rvz:sys
boot.bin
bi2.bin
apploader.bin
fst.bin
main.dol
❯ dtk vfs cp disc.rvz:sys/main.dol .
```
2024-10-04 03:50:35 +00:00
|
|
|
"zerocopy 0.7.35",
|
2022-12-10 06:28:23 +00:00
|
|
|
]
|
|
|
|
|
2022-11-27 06:37:29 +00:00
|
|
|
[[package]]
|
|
|
|
name = "aho-corasick"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "1.1.3"
|
2022-11-27 06:37:29 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
|
2022-11-27 06:37:29 +00:00
|
|
|
dependencies = [
|
|
|
|
"memchr",
|
|
|
|
]
|
|
|
|
|
2023-09-13 06:08:51 +00:00
|
|
|
[[package]]
|
|
|
|
name = "ansi_term"
|
|
|
|
version = "0.12.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
|
|
|
|
dependencies = [
|
|
|
|
"winapi",
|
|
|
|
]
|
|
|
|
|
2022-11-27 06:37:29 +00:00
|
|
|
[[package]]
|
|
|
|
name = "anyhow"
|
2024-09-29 18:20:28 +00:00
|
|
|
version = "1.0.89"
|
2022-11-27 06:37:29 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-29 18:20:28 +00:00
|
|
|
checksum = "86fdf8605db99b54d3cd748a44c6d04df638eb5dafb219b135d0149bd0db01f6"
|
2023-01-28 04:15:52 +00:00
|
|
|
dependencies = [
|
|
|
|
"backtrace",
|
|
|
|
]
|
2022-11-27 06:37:29 +00:00
|
|
|
|
2022-12-15 00:56:55 +00:00
|
|
|
[[package]]
|
|
|
|
name = "ar"
|
|
|
|
version = "0.8.0"
|
2023-01-28 04:15:52 +00:00
|
|
|
source = "git+https://github.com/bjorn3/rust-ar.git?branch=write_symbol_table#a61d6f5b84b0240f7afddf8cebc7e58ee1719829"
|
2022-12-15 00:56:55 +00:00
|
|
|
|
2023-08-03 22:55:57 +00:00
|
|
|
[[package]]
|
|
|
|
name = "argp"
|
|
|
|
version = "0.3.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "84c16c577a1a3b720a90eb2127bd0ae61530a71064d1a6babaaaa87f6174b9f1"
|
|
|
|
dependencies = [
|
|
|
|
"argp_derive",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "argp_derive"
|
|
|
|
version = "0.3.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "fe3763c8b5e0ef2f7d0df26daa671808cc75e2d81547f63ccca96bf045e41799"
|
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"pulldown-cmark",
|
|
|
|
"quote",
|
2023-10-06 05:20:04 +00:00
|
|
|
"syn 1.0.109",
|
2023-08-03 22:55:57 +00:00
|
|
|
]
|
|
|
|
|
2023-09-03 14:42:52 +00:00
|
|
|
[[package]]
|
|
|
|
name = "atty"
|
|
|
|
version = "0.2.14"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
|
|
|
|
dependencies = [
|
2023-10-10 16:32:05 +00:00
|
|
|
"hermit-abi 0.1.19",
|
2023-09-03 14:42:52 +00:00
|
|
|
"libc",
|
|
|
|
"winapi",
|
|
|
|
]
|
|
|
|
|
2022-12-10 06:28:23 +00:00
|
|
|
[[package]]
|
|
|
|
name = "autocfg"
|
2024-09-29 18:20:28 +00:00
|
|
|
version = "1.4.0"
|
2022-12-10 06:28:23 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-29 18:20:28 +00:00
|
|
|
checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
|
2022-12-10 06:28:23 +00:00
|
|
|
|
2023-01-28 04:15:52 +00:00
|
|
|
[[package]]
|
|
|
|
name = "backtrace"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "0.3.74"
|
2023-01-28 04:15:52 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a"
|
2023-01-28 04:15:52 +00:00
|
|
|
dependencies = [
|
|
|
|
"addr2line",
|
|
|
|
"cfg-if",
|
|
|
|
"libc",
|
2023-11-18 20:03:24 +00:00
|
|
|
"miniz_oxide",
|
2024-09-10 02:36:18 +00:00
|
|
|
"object",
|
2023-01-28 04:15:52 +00:00
|
|
|
"rustc-demangle",
|
2024-09-10 02:36:18 +00:00
|
|
|
"windows-targets",
|
2023-01-28 04:15:52 +00:00
|
|
|
]
|
|
|
|
|
2022-11-27 06:37:29 +00:00
|
|
|
[[package]]
|
|
|
|
name = "base16ct"
|
2023-07-21 21:59:07 +00:00
|
|
|
version = "0.2.0"
|
2022-11-27 06:37:29 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-07-21 21:59:07 +00:00
|
|
|
checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf"
|
2022-11-27 06:37:29 +00:00
|
|
|
|
2023-01-18 20:52:38 +00:00
|
|
|
[[package]]
|
|
|
|
name = "base64"
|
2024-05-01 02:40:14 +00:00
|
|
|
version = "0.22.1"
|
2023-01-18 20:52:38 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-05-01 02:40:14 +00:00
|
|
|
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
2023-01-18 20:52:38 +00:00
|
|
|
|
2022-12-10 06:28:23 +00:00
|
|
|
[[package]]
|
|
|
|
name = "bincode"
|
|
|
|
version = "1.3.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
|
|
|
|
dependencies = [
|
|
|
|
"serde",
|
|
|
|
]
|
|
|
|
|
2024-03-14 00:30:15 +00:00
|
|
|
[[package]]
|
|
|
|
name = "bit-set"
|
|
|
|
version = "0.5.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1"
|
|
|
|
dependencies = [
|
|
|
|
"bit-vec",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "bit-vec"
|
|
|
|
version = "0.6.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
|
|
|
|
|
2022-11-27 06:37:29 +00:00
|
|
|
[[package]]
|
|
|
|
name = "bitflags"
|
|
|
|
version = "1.3.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
|
|
|
2024-06-04 02:31:06 +00:00
|
|
|
[[package]]
|
|
|
|
name = "bitflags"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "2.6.0"
|
2024-06-04 02:31:06 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
|
2024-06-04 02:31:06 +00:00
|
|
|
|
2022-11-27 06:37:29 +00:00
|
|
|
[[package]]
|
|
|
|
name = "block-buffer"
|
2023-11-18 20:03:24 +00:00
|
|
|
version = "0.10.4"
|
2022-11-27 06:37:29 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-11-18 20:03:24 +00:00
|
|
|
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
2022-11-27 06:37:29 +00:00
|
|
|
dependencies = [
|
|
|
|
"generic-array",
|
|
|
|
]
|
|
|
|
|
2024-05-01 06:12:20 +00:00
|
|
|
[[package]]
|
|
|
|
name = "block-padding"
|
|
|
|
version = "0.3.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93"
|
|
|
|
dependencies = [
|
|
|
|
"generic-array",
|
|
|
|
]
|
|
|
|
|
2024-09-10 02:36:18 +00:00
|
|
|
[[package]]
|
|
|
|
name = "bumpalo"
|
|
|
|
version = "3.16.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
|
|
|
|
|
2023-01-18 20:52:38 +00:00
|
|
|
[[package]]
|
|
|
|
name = "byteorder"
|
2023-10-06 05:20:04 +00:00
|
|
|
version = "1.5.0"
|
2023-01-18 20:52:38 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-10-06 05:20:04 +00:00
|
|
|
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
2023-01-18 20:52:38 +00:00
|
|
|
|
2024-09-10 02:36:18 +00:00
|
|
|
[[package]]
|
|
|
|
name = "bytes"
|
2024-09-29 18:20:28 +00:00
|
|
|
version = "1.7.2"
|
2024-09-10 02:36:18 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-29 18:20:28 +00:00
|
|
|
checksum = "428d9aa8fbc0670b7b8d6030a7fadd0f86151cae55e4dbbece15f3780a3dfaf3"
|
2024-09-10 02:36:18 +00:00
|
|
|
|
2024-05-01 06:12:20 +00:00
|
|
|
[[package]]
|
|
|
|
name = "bzip2"
|
|
|
|
version = "0.4.4"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "bdb116a6ef3f6c3698828873ad02c3014b3c85cadb88496095628e3ef1e347f8"
|
|
|
|
dependencies = [
|
|
|
|
"bzip2-sys",
|
|
|
|
"libc",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "bzip2-sys"
|
|
|
|
version = "0.1.11+1.0.8"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc"
|
|
|
|
dependencies = [
|
|
|
|
"cc",
|
|
|
|
"libc",
|
|
|
|
"pkg-config",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "cbc"
|
|
|
|
version = "0.1.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6"
|
|
|
|
dependencies = [
|
|
|
|
"cipher",
|
|
|
|
]
|
|
|
|
|
2023-01-18 20:52:38 +00:00
|
|
|
[[package]]
|
|
|
|
name = "cc"
|
2024-10-04 04:24:54 +00:00
|
|
|
version = "1.1.24"
|
2023-01-18 20:52:38 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-10-04 04:24:54 +00:00
|
|
|
checksum = "812acba72f0a070b003d3697490d2b55b837230ae7c6c6497f05cc2ddbb8d938"
|
2024-05-01 06:12:20 +00:00
|
|
|
dependencies = [
|
|
|
|
"jobserver",
|
|
|
|
"libc",
|
2024-09-10 02:36:18 +00:00
|
|
|
"shlex",
|
2024-05-01 06:12:20 +00:00
|
|
|
]
|
2023-01-18 20:52:38 +00:00
|
|
|
|
2022-11-27 06:37:29 +00:00
|
|
|
[[package]]
|
|
|
|
name = "cfg-if"
|
|
|
|
version = "1.0.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
|
|
|
2024-05-01 06:12:20 +00:00
|
|
|
[[package]]
|
|
|
|
name = "cipher"
|
|
|
|
version = "0.4.4"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
|
|
|
|
dependencies = [
|
|
|
|
"crypto-common",
|
|
|
|
"inout",
|
|
|
|
]
|
|
|
|
|
2023-09-13 06:08:51 +00:00
|
|
|
[[package]]
|
|
|
|
name = "clap"
|
|
|
|
version = "2.34.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
|
|
|
|
dependencies = [
|
|
|
|
"ansi_term",
|
|
|
|
"atty",
|
2024-06-04 02:31:06 +00:00
|
|
|
"bitflags 1.3.2",
|
2023-09-13 06:08:51 +00:00
|
|
|
"strsim",
|
|
|
|
"textwrap",
|
|
|
|
"unicode-width",
|
|
|
|
"vec_map",
|
|
|
|
]
|
|
|
|
|
2024-05-01 06:12:20 +00:00
|
|
|
[[package]]
|
|
|
|
name = "console"
|
|
|
|
version = "0.15.8"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "0e1f83fc076bd6dd27517eacdf25fef6c4dfe5f1d7448bafaaf3a26f13b5e4eb"
|
|
|
|
dependencies = [
|
|
|
|
"encode_unicode",
|
|
|
|
"lazy_static",
|
|
|
|
"libc",
|
|
|
|
"unicode-width",
|
|
|
|
"windows-sys 0.52.0",
|
|
|
|
]
|
|
|
|
|
2022-11-27 06:37:29 +00:00
|
|
|
[[package]]
|
|
|
|
name = "cpufeatures"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "0.2.14"
|
2022-11-27 06:37:29 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "608697df725056feaccfa42cffdaeeec3fccc4ffc38358ecd19b243e716a78e0"
|
2022-11-27 06:37:29 +00:00
|
|
|
dependencies = [
|
|
|
|
"libc",
|
|
|
|
]
|
|
|
|
|
2022-12-10 06:28:23 +00:00
|
|
|
[[package]]
|
|
|
|
name = "crc32fast"
|
2024-09-05 02:09:56 +00:00
|
|
|
version = "1.4.2"
|
2022-12-10 06:28:23 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-05 02:09:56 +00:00
|
|
|
checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
|
2022-12-10 06:28:23 +00:00
|
|
|
dependencies = [
|
|
|
|
"cfg-if",
|
|
|
|
]
|
|
|
|
|
2023-08-25 04:54:29 +00:00
|
|
|
[[package]]
|
|
|
|
name = "crossbeam-deque"
|
2024-03-14 00:23:09 +00:00
|
|
|
version = "0.8.5"
|
2023-08-25 04:54:29 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-03-14 00:23:09 +00:00
|
|
|
checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d"
|
2023-08-25 04:54:29 +00:00
|
|
|
dependencies = [
|
|
|
|
"crossbeam-epoch",
|
|
|
|
"crossbeam-utils",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "crossbeam-epoch"
|
2024-03-14 00:23:09 +00:00
|
|
|
version = "0.9.18"
|
2023-08-25 04:54:29 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-03-14 00:23:09 +00:00
|
|
|
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
2023-08-25 04:54:29 +00:00
|
|
|
dependencies = [
|
|
|
|
"crossbeam-utils",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "crossbeam-utils"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "0.8.20"
|
2023-08-25 04:54:29 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80"
|
2023-08-25 04:54:29 +00:00
|
|
|
|
2024-06-04 02:31:06 +00:00
|
|
|
[[package]]
|
|
|
|
name = "crossterm"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "0.28.1"
|
2024-06-04 02:31:06 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "829d955a0bb380ef178a640b91779e3987da38c9aea133b20614cfed8cdea9c6"
|
2024-06-04 02:31:06 +00:00
|
|
|
dependencies = [
|
2024-09-10 02:36:18 +00:00
|
|
|
"bitflags 2.6.0",
|
2024-06-04 02:31:06 +00:00
|
|
|
"crossterm_winapi",
|
|
|
|
"mio",
|
|
|
|
"parking_lot",
|
2024-09-10 02:36:18 +00:00
|
|
|
"rustix",
|
2024-06-04 02:31:06 +00:00
|
|
|
"signal-hook",
|
|
|
|
"signal-hook-mio",
|
|
|
|
"winapi",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "crossterm_winapi"
|
|
|
|
version = "0.9.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
|
|
|
|
dependencies = [
|
|
|
|
"winapi",
|
|
|
|
]
|
|
|
|
|
2022-11-27 06:37:29 +00:00
|
|
|
[[package]]
|
|
|
|
name = "crypto-common"
|
|
|
|
version = "0.1.6"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
|
|
|
|
dependencies = [
|
|
|
|
"generic-array",
|
|
|
|
"typenum",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "cwdemangle"
|
2024-03-14 00:23:09 +00:00
|
|
|
version = "1.0.0"
|
2022-11-27 06:37:29 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-03-14 00:23:09 +00:00
|
|
|
checksum = "c2e06f9bce634a3c898eb1e5cb949ff63133cbb218af93cc9b38b31d6f3ea285"
|
2022-11-27 06:37:29 +00:00
|
|
|
|
2024-10-03 07:13:23 +00:00
|
|
|
[[package]]
|
|
|
|
name = "cwextab"
|
|
|
|
version = "1.0.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "e5aa7f13cc2fcb2bcfd3abc51bdbbf8f1fb729a69ed8c05ecbaa1a42197d1842"
|
|
|
|
dependencies = [
|
|
|
|
"thiserror",
|
|
|
|
]
|
|
|
|
|
2022-11-27 06:37:29 +00:00
|
|
|
[[package]]
|
|
|
|
name = "decomp-toolkit"
|
2024-10-04 04:32:19 +00:00
|
|
|
version = "1.1.0"
|
2022-11-27 06:37:29 +00:00
|
|
|
dependencies = [
|
|
|
|
"anyhow",
|
2022-12-15 00:56:55 +00:00
|
|
|
"ar",
|
2023-08-03 22:55:57 +00:00
|
|
|
"argp",
|
2022-11-27 06:37:29 +00:00
|
|
|
"base16ct",
|
2023-01-18 20:52:38 +00:00
|
|
|
"base64",
|
2024-06-04 02:31:06 +00:00
|
|
|
"crossterm",
|
2022-11-27 06:37:29 +00:00
|
|
|
"cwdemangle",
|
2024-10-04 04:24:54 +00:00
|
|
|
"cwextab",
|
Load objects from disc image & `vfs` module
Revamps support for container paths and centralizes logic into a VFS (virtual file system) module.
The new VFS architecture supports disc images and any layer of nesting.
For example, the following command works:
`dtk dol info 'Interactive Multi-Game Demo Disc - July 2002 (USA).rvz:files/zz_StarFox051702_e3.tgc:files/default.dol'`
This opens a TGC file inside an RVZ disc image, then reads `default.dol` in the FST.
Another example:
`dtk rel info 'Legend of Zelda, The - The Wind Waker (USA).rvz:files/RELS.arc:mmem/f_pc_profile_lst.rel'`
This opens a RARC archive inside an RVZ disc image, loads the Yaz0-compressed REL and
decompresses it on the fly.
This all operates in memory with minimal overhead, with no need to extract temporary files.
Supported container formats:
- Disc images (ISO/GCM, WIA/RVZ, WBFS, CISO, NFS, GCZ, TGC)
- RARC/SZS and U8 (.arc)
Supported compression formats:
- Yaz0 (SZS)
- Yay0 (SZP)
- NLZSS (.lz)
Additionally, projects can utilize a new configuration key `object_base`:
```
object: orig/GZLE01/sys/main.dol
modules:
- object: orig/GZLE01/files/RELS.arc:rels/mmem/f_pc_profile_lst.rel
```
becomes
```
object_base: orig/GZLE01
object: sys/main.dol
modules:
- object: files/RELS.arc:mmem/f_pc_profile_lst.rel
```
When loading the objects, decomp-toolkit will automatically check the `object_base`
directory for any disc images. (They can be named anything, but must be in the folder
root) If one is found, all objects will be fetched from the disc image itself, rather
than having to extract the files manually.
While still a work in progress, two new `vfs` commands were added: `vfs ls` and `vfs cp`.
These commands are very barebones currently, but allow listing directory contents and
extracting files from decomp-toolkit's vfs representation:
```
❯ dtk vfs ls disc.rvz:
files
sys
❯ dtk vfs ls disc.rvz:sys
boot.bin
bi2.bin
apploader.bin
fst.bin
main.dol
❯ dtk vfs cp disc.rvz:sys/main.dol .
```
2024-10-04 03:50:35 +00:00
|
|
|
"dyn-clone",
|
2023-10-10 16:32:05 +00:00
|
|
|
"enable-ansi-support",
|
2022-11-28 04:43:46 +00:00
|
|
|
"filetime",
|
2024-05-01 02:40:14 +00:00
|
|
|
"fixedbitset 0.5.7",
|
2022-12-10 06:28:23 +00:00
|
|
|
"flagset",
|
2023-07-21 21:59:07 +00:00
|
|
|
"glob",
|
2022-11-27 06:37:29 +00:00
|
|
|
"hex",
|
2023-11-18 18:56:58 +00:00
|
|
|
"indent",
|
2023-11-18 20:03:24 +00:00
|
|
|
"indexmap",
|
2023-07-21 21:59:07 +00:00
|
|
|
"itertools",
|
2022-11-27 06:37:29 +00:00
|
|
|
"log",
|
|
|
|
"memchr",
|
|
|
|
"memmap2",
|
2024-09-29 18:20:28 +00:00
|
|
|
"mimalloc",
|
2022-11-27 06:37:29 +00:00
|
|
|
"multimap",
|
2023-09-13 06:08:51 +00:00
|
|
|
"nintendo-lz",
|
2024-05-01 06:12:20 +00:00
|
|
|
"nodtool",
|
2023-01-18 20:52:38 +00:00
|
|
|
"num_enum",
|
2024-02-29 05:27:38 +00:00
|
|
|
"objdiff-core",
|
2024-09-10 02:36:18 +00:00
|
|
|
"object",
|
2023-01-18 20:52:38 +00:00
|
|
|
"once_cell",
|
2024-05-01 00:03:00 +00:00
|
|
|
"orthrus-ncompress",
|
2023-09-03 14:42:52 +00:00
|
|
|
"owo-colors",
|
2023-08-25 04:54:29 +00:00
|
|
|
"path-slash",
|
2023-08-03 22:55:57 +00:00
|
|
|
"petgraph",
|
2022-12-10 06:28:23 +00:00
|
|
|
"ppc750cl",
|
2023-08-25 04:54:29 +00:00
|
|
|
"rayon",
|
2022-11-27 06:37:29 +00:00
|
|
|
"regex",
|
2023-09-03 14:42:52 +00:00
|
|
|
"rustc-hash",
|
2023-12-21 03:28:30 +00:00
|
|
|
"sanitise-file-name",
|
2023-01-18 20:52:38 +00:00
|
|
|
"serde",
|
2023-08-06 19:46:51 +00:00
|
|
|
"serde_json",
|
2023-01-18 20:52:38 +00:00
|
|
|
"serde_repr",
|
|
|
|
"serde_yaml",
|
2022-11-27 06:37:29 +00:00
|
|
|
"sha-1",
|
2024-09-10 02:36:18 +00:00
|
|
|
"supports-color 3.0.1",
|
2023-11-18 18:56:58 +00:00
|
|
|
"syntect",
|
2023-08-25 04:54:29 +00:00
|
|
|
"tracing",
|
|
|
|
"tracing-attributes",
|
|
|
|
"tracing-subscriber",
|
2023-11-08 04:21:59 +00:00
|
|
|
"xxhash-rust",
|
2024-10-04 04:24:54 +00:00
|
|
|
"zerocopy 0.8.0",
|
2022-11-27 06:37:29 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "digest"
|
2023-11-18 20:03:24 +00:00
|
|
|
version = "0.10.7"
|
2022-11-27 06:37:29 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-11-18 20:03:24 +00:00
|
|
|
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
2022-11-27 06:37:29 +00:00
|
|
|
dependencies = [
|
|
|
|
"block-buffer",
|
|
|
|
"crypto-common",
|
|
|
|
]
|
|
|
|
|
2024-05-01 06:12:20 +00:00
|
|
|
[[package]]
|
|
|
|
name = "dyn-clone"
|
|
|
|
version = "1.0.17"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "0d6ef0072f8a535281e4876be788938b528e9a1d43900b82c2569af7da799125"
|
|
|
|
|
2023-07-21 21:59:07 +00:00
|
|
|
[[package]]
|
|
|
|
name = "either"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "1.13.0"
|
2023-07-21 21:59:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
|
2023-07-21 21:59:07 +00:00
|
|
|
|
2023-10-10 16:32:05 +00:00
|
|
|
[[package]]
|
|
|
|
name = "enable-ansi-support"
|
|
|
|
version = "0.2.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "aa4ff3ae2a9aa54bf7ee0983e59303224de742818c1822d89f07da9856d9bc60"
|
|
|
|
dependencies = [
|
|
|
|
"windows-sys 0.42.0",
|
|
|
|
]
|
|
|
|
|
2024-05-01 06:12:20 +00:00
|
|
|
[[package]]
|
|
|
|
name = "encode_unicode"
|
|
|
|
version = "0.3.6"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "encoding_rs"
|
|
|
|
version = "0.8.34"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "b45de904aa0b010bce2ab45264d0631681847fa7b6f2eaa7dab7619943bc4f59"
|
|
|
|
dependencies = [
|
|
|
|
"cfg-if",
|
|
|
|
]
|
|
|
|
|
2023-07-21 21:59:07 +00:00
|
|
|
[[package]]
|
|
|
|
name = "equivalent"
|
2023-10-06 05:20:04 +00:00
|
|
|
version = "1.0.1"
|
2023-07-21 21:59:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-10-06 05:20:04 +00:00
|
|
|
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
2023-07-21 21:59:07 +00:00
|
|
|
|
2024-09-10 02:36:18 +00:00
|
|
|
[[package]]
|
|
|
|
name = "errno"
|
|
|
|
version = "0.3.9"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba"
|
|
|
|
dependencies = [
|
|
|
|
"libc",
|
|
|
|
"windows-sys 0.52.0",
|
|
|
|
]
|
|
|
|
|
2024-03-14 00:30:15 +00:00
|
|
|
[[package]]
|
|
|
|
name = "fancy-regex"
|
|
|
|
version = "0.11.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "b95f7c0680e4142284cf8b22c14a476e87d61b004a3a0861872b32ef7ead40a2"
|
|
|
|
dependencies = [
|
|
|
|
"bit-set",
|
|
|
|
"regex",
|
|
|
|
]
|
|
|
|
|
2024-09-10 02:36:18 +00:00
|
|
|
[[package]]
|
|
|
|
name = "fastrand"
|
|
|
|
version = "2.1.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "e8c02a5121d4ea3eb16a80748c74f5549a5665e4c21333c6098f283870fbdea6"
|
|
|
|
|
2022-11-28 04:43:46 +00:00
|
|
|
[[package]]
|
|
|
|
name = "filetime"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "0.2.25"
|
2022-11-28 04:43:46 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "35c0522e981e68cbfa8c3f978441a5f34b30b96e146b33cd3359176b50fe8586"
|
2022-11-28 04:43:46 +00:00
|
|
|
dependencies = [
|
|
|
|
"cfg-if",
|
|
|
|
"libc",
|
2024-09-10 02:36:18 +00:00
|
|
|
"libredox",
|
|
|
|
"windows-sys 0.59.0",
|
2022-11-28 04:43:46 +00:00
|
|
|
]
|
|
|
|
|
2023-01-18 20:52:38 +00:00
|
|
|
[[package]]
|
|
|
|
name = "fixedbitset"
|
|
|
|
version = "0.4.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
|
|
|
|
|
2024-03-14 00:23:09 +00:00
|
|
|
[[package]]
|
|
|
|
name = "fixedbitset"
|
2024-05-01 02:40:14 +00:00
|
|
|
version = "0.5.7"
|
2024-03-14 00:23:09 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-05-01 02:40:14 +00:00
|
|
|
checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
|
2024-03-14 00:23:09 +00:00
|
|
|
|
2022-12-10 06:28:23 +00:00
|
|
|
[[package]]
|
|
|
|
name = "flagset"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "0.4.6"
|
2022-12-10 06:28:23 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "b3ea1ec5f8307826a5b71094dd91fc04d4ae75d5709b20ad351c7fb4815c86ec"
|
2023-01-18 20:52:38 +00:00
|
|
|
dependencies = [
|
|
|
|
"serde",
|
|
|
|
]
|
2022-12-10 06:28:23 +00:00
|
|
|
|
2023-01-28 04:15:52 +00:00
|
|
|
[[package]]
|
|
|
|
name = "flate2"
|
2024-09-29 18:20:28 +00:00
|
|
|
version = "1.0.34"
|
2023-01-28 04:15:52 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-29 18:20:28 +00:00
|
|
|
checksum = "a1b589b4dc103969ad3cf85c950899926ec64300a1a46d76c03a6072957036f0"
|
2023-01-28 04:15:52 +00:00
|
|
|
dependencies = [
|
|
|
|
"crc32fast",
|
2023-11-18 20:03:24 +00:00
|
|
|
"miniz_oxide",
|
2023-01-28 04:15:52 +00:00
|
|
|
]
|
|
|
|
|
2023-11-18 18:56:58 +00:00
|
|
|
[[package]]
|
|
|
|
name = "fnv"
|
|
|
|
version = "1.0.7"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
|
|
|
2022-11-27 06:37:29 +00:00
|
|
|
[[package]]
|
|
|
|
name = "generic-array"
|
2023-11-18 20:03:24 +00:00
|
|
|
version = "0.14.7"
|
2022-11-27 06:37:29 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-11-18 20:03:24 +00:00
|
|
|
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
2022-11-27 06:37:29 +00:00
|
|
|
dependencies = [
|
|
|
|
"typenum",
|
|
|
|
"version_check",
|
|
|
|
]
|
|
|
|
|
2023-08-03 22:55:57 +00:00
|
|
|
[[package]]
|
|
|
|
name = "getopts"
|
|
|
|
version = "0.2.21"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5"
|
|
|
|
dependencies = [
|
|
|
|
"unicode-width",
|
|
|
|
]
|
|
|
|
|
2023-01-28 04:15:52 +00:00
|
|
|
[[package]]
|
|
|
|
name = "gimli"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "0.31.0"
|
2023-01-28 04:15:52 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "32085ea23f3234fc7846555e85283ba4de91e21016dc0455a16286d87a292d64"
|
2023-01-28 04:15:52 +00:00
|
|
|
|
2023-07-21 21:59:07 +00:00
|
|
|
[[package]]
|
|
|
|
name = "glob"
|
|
|
|
version = "0.3.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
|
|
|
|
|
2023-11-18 18:56:58 +00:00
|
|
|
[[package]]
|
|
|
|
name = "hashbrown"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "0.14.5"
|
2023-11-18 18:56:58 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
2022-12-10 06:28:23 +00:00
|
|
|
dependencies = [
|
|
|
|
"ahash",
|
|
|
|
]
|
|
|
|
|
2024-10-04 04:24:54 +00:00
|
|
|
[[package]]
|
|
|
|
name = "hashbrown"
|
|
|
|
version = "0.15.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "1e087f84d4f86bf4b218b927129862374b72199ae7d8657835f1e89000eea4fb"
|
|
|
|
|
2024-06-04 02:31:06 +00:00
|
|
|
[[package]]
|
|
|
|
name = "heck"
|
|
|
|
version = "0.5.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
|
|
|
2023-09-03 14:42:52 +00:00
|
|
|
[[package]]
|
|
|
|
name = "hermit-abi"
|
|
|
|
version = "0.1.19"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
|
|
|
|
dependencies = [
|
|
|
|
"libc",
|
|
|
|
]
|
|
|
|
|
2023-10-10 16:32:05 +00:00
|
|
|
[[package]]
|
|
|
|
name = "hermit-abi"
|
2024-03-14 00:23:09 +00:00
|
|
|
version = "0.3.9"
|
2023-10-10 16:32:05 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-03-14 00:23:09 +00:00
|
|
|
checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
|
2023-10-10 16:32:05 +00:00
|
|
|
|
2024-09-10 02:36:18 +00:00
|
|
|
[[package]]
|
|
|
|
name = "hermit-abi"
|
|
|
|
version = "0.4.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "fbf6a919d6cf397374f7dfeeea91d974c7c0a7221d0d0f4f20d859d329e53fcc"
|
|
|
|
|
2022-11-27 06:37:29 +00:00
|
|
|
[[package]]
|
|
|
|
name = "hex"
|
|
|
|
version = "0.4.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
2024-05-01 06:12:20 +00:00
|
|
|
dependencies = [
|
|
|
|
"serde",
|
|
|
|
]
|
2022-11-27 06:37:29 +00:00
|
|
|
|
2023-11-18 18:56:58 +00:00
|
|
|
[[package]]
|
|
|
|
name = "indent"
|
|
|
|
version = "0.1.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "d9f1a0777d972970f204fdf8ef319f1f4f8459131636d7e3c96c5d59570d0fa6"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "indexmap"
|
2024-10-04 04:24:54 +00:00
|
|
|
version = "2.6.0"
|
2022-12-10 06:28:23 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-10-04 04:24:54 +00:00
|
|
|
checksum = "707907fe3c25f5424cce2cb7e1cbcafee6bdbe735ca90ef77c29e84591e5b9da"
|
2023-07-21 21:59:07 +00:00
|
|
|
dependencies = [
|
|
|
|
"equivalent",
|
2024-10-04 04:24:54 +00:00
|
|
|
"hashbrown 0.15.0",
|
2023-07-21 21:59:07 +00:00
|
|
|
]
|
|
|
|
|
2024-05-01 06:12:20 +00:00
|
|
|
[[package]]
|
|
|
|
name = "indicatif"
|
|
|
|
version = "0.17.8"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "763a5a8f45087d6bcea4222e7b72c291a054edf80e4ef6efd2a4979878c7bea3"
|
|
|
|
dependencies = [
|
|
|
|
"console",
|
|
|
|
"instant",
|
|
|
|
"number_prefix",
|
|
|
|
"portable-atomic",
|
|
|
|
"unicode-width",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "inout"
|
|
|
|
version = "0.1.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5"
|
|
|
|
dependencies = [
|
|
|
|
"block-padding",
|
|
|
|
"generic-array",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "instant"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "0.1.13"
|
2024-05-01 06:12:20 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222"
|
2024-05-01 06:12:20 +00:00
|
|
|
dependencies = [
|
|
|
|
"cfg-if",
|
|
|
|
]
|
|
|
|
|
2023-10-10 16:32:05 +00:00
|
|
|
[[package]]
|
|
|
|
name = "is-terminal"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "0.4.13"
|
2023-10-10 16:32:05 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "261f68e344040fbd0edea105bef17c66edf46f984ddb1115b775ce31be948f4b"
|
2023-10-10 16:32:05 +00:00
|
|
|
dependencies = [
|
2024-09-10 02:36:18 +00:00
|
|
|
"hermit-abi 0.4.0",
|
2024-03-14 00:23:09 +00:00
|
|
|
"libc",
|
|
|
|
"windows-sys 0.52.0",
|
2023-10-10 16:32:05 +00:00
|
|
|
]
|
|
|
|
|
2023-09-03 14:42:52 +00:00
|
|
|
[[package]]
|
|
|
|
name = "is_ci"
|
2024-03-14 00:23:09 +00:00
|
|
|
version = "1.2.0"
|
2023-09-03 14:42:52 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-03-14 00:23:09 +00:00
|
|
|
checksum = "7655c9839580ee829dfacba1d1278c2b7883e50a277ff7541299489d6bdfdc45"
|
2023-09-03 14:42:52 +00:00
|
|
|
|
2023-07-21 21:59:07 +00:00
|
|
|
[[package]]
|
|
|
|
name = "itertools"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "0.13.0"
|
2023-07-21 21:59:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
2023-07-21 21:59:07 +00:00
|
|
|
dependencies = [
|
|
|
|
"either",
|
2023-01-18 20:52:38 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "itoa"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "1.0.11"
|
2023-01-18 20:52:38 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
|
2023-01-18 20:52:38 +00:00
|
|
|
|
2024-05-01 06:12:20 +00:00
|
|
|
[[package]]
|
|
|
|
name = "jobserver"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "0.1.32"
|
2024-05-01 06:12:20 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0"
|
2024-05-01 06:12:20 +00:00
|
|
|
dependencies = [
|
|
|
|
"libc",
|
|
|
|
]
|
|
|
|
|
2024-09-10 02:36:18 +00:00
|
|
|
[[package]]
|
|
|
|
name = "js-sys"
|
|
|
|
version = "0.3.70"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "1868808506b929d7b0cfa8f75951347aa71bb21144b7791bae35d9bccfcfe37a"
|
|
|
|
dependencies = [
|
|
|
|
"wasm-bindgen",
|
|
|
|
]
|
|
|
|
|
2022-11-27 06:37:29 +00:00
|
|
|
[[package]]
|
2023-08-25 04:54:29 +00:00
|
|
|
name = "lazy_static"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "1.5.0"
|
2022-11-27 06:37:29 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
2022-11-27 06:37:29 +00:00
|
|
|
|
2023-01-18 20:52:38 +00:00
|
|
|
[[package]]
|
2023-08-25 04:54:29 +00:00
|
|
|
name = "libc"
|
2024-09-29 18:20:28 +00:00
|
|
|
version = "0.2.159"
|
2023-01-18 20:52:38 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-29 18:20:28 +00:00
|
|
|
checksum = "561d97a539a36e26a9a5fad1ea11a3039a67714694aaa379433e580854bc3dc5"
|
2023-01-18 20:52:38 +00:00
|
|
|
|
2024-05-01 06:12:20 +00:00
|
|
|
[[package]]
|
|
|
|
name = "liblzma"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "0.3.4"
|
2024-05-01 06:12:20 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "a7c45fc6fcf5b527d3cf89c1dee8c327943984b0dc8bfcf6e100473b00969e63"
|
2024-05-01 06:12:20 +00:00
|
|
|
dependencies = [
|
|
|
|
"liblzma-sys",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "liblzma-sys"
|
2024-10-04 04:24:54 +00:00
|
|
|
version = "0.3.9"
|
2024-05-01 06:12:20 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-10-04 04:24:54 +00:00
|
|
|
checksum = "6630cb23edeb2e563cd6c30d4117554c69646871455843c33ddcb1d9aef82ecf"
|
2024-05-01 06:12:20 +00:00
|
|
|
dependencies = [
|
|
|
|
"cc",
|
|
|
|
"libc",
|
|
|
|
"pkg-config",
|
|
|
|
]
|
|
|
|
|
2024-09-29 18:20:28 +00:00
|
|
|
[[package]]
|
|
|
|
name = "libmimalloc-sys"
|
|
|
|
version = "0.1.39"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "23aa6811d3bd4deb8a84dde645f943476d13b248d818edcf8ce0b2f37f036b44"
|
|
|
|
dependencies = [
|
|
|
|
"cc",
|
|
|
|
"libc",
|
|
|
|
]
|
|
|
|
|
2024-09-10 02:36:18 +00:00
|
|
|
[[package]]
|
|
|
|
name = "libredox"
|
|
|
|
version = "0.1.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
|
|
|
|
dependencies = [
|
|
|
|
"bitflags 2.6.0",
|
|
|
|
"libc",
|
|
|
|
"redox_syscall",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "linux-raw-sys"
|
|
|
|
version = "0.4.14"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
|
|
|
|
|
2024-06-04 02:31:06 +00:00
|
|
|
[[package]]
|
|
|
|
name = "lock_api"
|
|
|
|
version = "0.4.12"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
|
|
|
|
dependencies = [
|
|
|
|
"autocfg",
|
|
|
|
"scopeguard",
|
|
|
|
]
|
|
|
|
|
2022-11-27 06:37:29 +00:00
|
|
|
[[package]]
|
|
|
|
name = "log"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "0.4.22"
|
2022-11-27 06:37:29 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
|
2022-11-27 06:37:29 +00:00
|
|
|
|
2023-09-03 14:42:52 +00:00
|
|
|
[[package]]
|
|
|
|
name = "matchers"
|
|
|
|
version = "0.1.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
|
|
|
|
dependencies = [
|
|
|
|
"regex-automata 0.1.10",
|
|
|
|
]
|
|
|
|
|
2024-05-01 06:12:20 +00:00
|
|
|
[[package]]
|
|
|
|
name = "md-5"
|
|
|
|
version = "0.10.6"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
|
|
|
|
dependencies = [
|
|
|
|
"cfg-if",
|
|
|
|
"digest",
|
|
|
|
]
|
|
|
|
|
2022-11-27 06:37:29 +00:00
|
|
|
[[package]]
|
|
|
|
name = "memchr"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "2.7.4"
|
2022-11-27 06:37:29 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
|
2022-11-27 06:37:29 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "memmap2"
|
2024-09-29 18:20:28 +00:00
|
|
|
version = "0.9.5"
|
2022-11-27 06:37:29 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-29 18:20:28 +00:00
|
|
|
checksum = "fd3f7eed9d3848f8b98834af67102b720745c4ec028fcd0aa0239277e7de374f"
|
2022-11-27 06:37:29 +00:00
|
|
|
dependencies = [
|
|
|
|
"libc",
|
|
|
|
]
|
|
|
|
|
2024-09-29 18:20:28 +00:00
|
|
|
[[package]]
|
|
|
|
name = "mimalloc"
|
|
|
|
version = "0.1.43"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "68914350ae34959d83f732418d51e2427a794055d0b9529f48259ac07af65633"
|
|
|
|
dependencies = [
|
|
|
|
"libmimalloc-sys",
|
|
|
|
]
|
|
|
|
|
2023-07-21 21:59:07 +00:00
|
|
|
[[package]]
|
|
|
|
name = "miniz_oxide"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "0.8.0"
|
2023-07-21 21:59:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "e2d80299ef12ff69b16a84bb182e3b9df68b5a91574d3d4fa6e41b65deec4df1"
|
2023-07-21 21:59:07 +00:00
|
|
|
dependencies = [
|
2024-09-10 02:36:18 +00:00
|
|
|
"adler2",
|
2023-07-21 21:59:07 +00:00
|
|
|
]
|
|
|
|
|
2024-06-04 02:31:06 +00:00
|
|
|
[[package]]
|
|
|
|
name = "mio"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "1.0.2"
|
2024-06-04 02:31:06 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec"
|
2024-06-04 02:31:06 +00:00
|
|
|
dependencies = [
|
2024-09-10 02:36:18 +00:00
|
|
|
"hermit-abi 0.3.9",
|
2024-06-04 02:31:06 +00:00
|
|
|
"libc",
|
|
|
|
"log",
|
|
|
|
"wasi",
|
2024-09-10 02:36:18 +00:00
|
|
|
"windows-sys 0.52.0",
|
2024-06-04 02:31:06 +00:00
|
|
|
]
|
|
|
|
|
2022-11-27 06:37:29 +00:00
|
|
|
[[package]]
|
|
|
|
name = "multimap"
|
2024-03-14 00:23:09 +00:00
|
|
|
version = "0.10.0"
|
2022-11-27 06:37:29 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-03-14 00:23:09 +00:00
|
|
|
checksum = "defc4c55412d89136f966bbb339008b474350e5e6e78d2714439c386b3137a03"
|
2022-11-27 06:37:29 +00:00
|
|
|
dependencies = [
|
|
|
|
"serde",
|
|
|
|
]
|
|
|
|
|
2023-09-13 06:08:51 +00:00
|
|
|
[[package]]
|
|
|
|
name = "nintendo-lz"
|
|
|
|
version = "0.1.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "768b95cd65a1a8b82d6c7e90a69d080b20996a876cd62987ab5bcb350c5ae646"
|
|
|
|
dependencies = [
|
|
|
|
"byteorder",
|
|
|
|
"clap",
|
|
|
|
]
|
|
|
|
|
2024-05-01 06:12:20 +00:00
|
|
|
[[package]]
|
|
|
|
name = "nod"
|
Load objects from disc image & `vfs` module
Revamps support for container paths and centralizes logic into a VFS (virtual file system) module.
The new VFS architecture supports disc images and any layer of nesting.
For example, the following command works:
`dtk dol info 'Interactive Multi-Game Demo Disc - July 2002 (USA).rvz:files/zz_StarFox051702_e3.tgc:files/default.dol'`
This opens a TGC file inside an RVZ disc image, then reads `default.dol` in the FST.
Another example:
`dtk rel info 'Legend of Zelda, The - The Wind Waker (USA).rvz:files/RELS.arc:mmem/f_pc_profile_lst.rel'`
This opens a RARC archive inside an RVZ disc image, loads the Yaz0-compressed REL and
decompresses it on the fly.
This all operates in memory with minimal overhead, with no need to extract temporary files.
Supported container formats:
- Disc images (ISO/GCM, WIA/RVZ, WBFS, CISO, NFS, GCZ, TGC)
- RARC/SZS and U8 (.arc)
Supported compression formats:
- Yaz0 (SZS)
- Yay0 (SZP)
- NLZSS (.lz)
Additionally, projects can utilize a new configuration key `object_base`:
```
object: orig/GZLE01/sys/main.dol
modules:
- object: orig/GZLE01/files/RELS.arc:rels/mmem/f_pc_profile_lst.rel
```
becomes
```
object_base: orig/GZLE01
object: sys/main.dol
modules:
- object: files/RELS.arc:mmem/f_pc_profile_lst.rel
```
When loading the objects, decomp-toolkit will automatically check the `object_base`
directory for any disc images. (They can be named anything, but must be in the folder
root) If one is found, all objects will be fetched from the disc image itself, rather
than having to extract the files manually.
While still a work in progress, two new `vfs` commands were added: `vfs ls` and `vfs cp`.
These commands are very barebones currently, but allow listing directory contents and
extracting files from decomp-toolkit's vfs representation:
```
❯ dtk vfs ls disc.rvz:
files
sys
❯ dtk vfs ls disc.rvz:sys
boot.bin
bi2.bin
apploader.bin
fst.bin
main.dol
❯ dtk vfs cp disc.rvz:sys/main.dol .
```
2024-10-04 03:50:35 +00:00
|
|
|
version = "1.4.0"
|
2024-09-05 02:09:56 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
Load objects from disc image & `vfs` module
Revamps support for container paths and centralizes logic into a VFS (virtual file system) module.
The new VFS architecture supports disc images and any layer of nesting.
For example, the following command works:
`dtk dol info 'Interactive Multi-Game Demo Disc - July 2002 (USA).rvz:files/zz_StarFox051702_e3.tgc:files/default.dol'`
This opens a TGC file inside an RVZ disc image, then reads `default.dol` in the FST.
Another example:
`dtk rel info 'Legend of Zelda, The - The Wind Waker (USA).rvz:files/RELS.arc:mmem/f_pc_profile_lst.rel'`
This opens a RARC archive inside an RVZ disc image, loads the Yaz0-compressed REL and
decompresses it on the fly.
This all operates in memory with minimal overhead, with no need to extract temporary files.
Supported container formats:
- Disc images (ISO/GCM, WIA/RVZ, WBFS, CISO, NFS, GCZ, TGC)
- RARC/SZS and U8 (.arc)
Supported compression formats:
- Yaz0 (SZS)
- Yay0 (SZP)
- NLZSS (.lz)
Additionally, projects can utilize a new configuration key `object_base`:
```
object: orig/GZLE01/sys/main.dol
modules:
- object: orig/GZLE01/files/RELS.arc:rels/mmem/f_pc_profile_lst.rel
```
becomes
```
object_base: orig/GZLE01
object: sys/main.dol
modules:
- object: files/RELS.arc:mmem/f_pc_profile_lst.rel
```
When loading the objects, decomp-toolkit will automatically check the `object_base`
directory for any disc images. (They can be named anything, but must be in the folder
root) If one is found, all objects will be fetched from the disc image itself, rather
than having to extract the files manually.
While still a work in progress, two new `vfs` commands were added: `vfs ls` and `vfs cp`.
These commands are very barebones currently, but allow listing directory contents and
extracting files from decomp-toolkit's vfs representation:
```
❯ dtk vfs ls disc.rvz:
files
sys
❯ dtk vfs ls disc.rvz:sys
boot.bin
bi2.bin
apploader.bin
fst.bin
main.dol
❯ dtk vfs cp disc.rvz:sys/main.dol .
```
2024-10-04 03:50:35 +00:00
|
|
|
checksum = "75b9bd092c2ebed932654aa6de256e39d2156ce8c87ace31191f8086f6d22f02"
|
2024-05-01 06:12:20 +00:00
|
|
|
dependencies = [
|
|
|
|
"adler",
|
|
|
|
"aes",
|
|
|
|
"base16ct",
|
|
|
|
"bzip2",
|
|
|
|
"cbc",
|
|
|
|
"digest",
|
|
|
|
"dyn-clone",
|
|
|
|
"encoding_rs",
|
|
|
|
"itertools",
|
|
|
|
"liblzma",
|
|
|
|
"log",
|
|
|
|
"miniz_oxide",
|
|
|
|
"rayon",
|
|
|
|
"sha1",
|
|
|
|
"thiserror",
|
Load objects from disc image & `vfs` module
Revamps support for container paths and centralizes logic into a VFS (virtual file system) module.
The new VFS architecture supports disc images and any layer of nesting.
For example, the following command works:
`dtk dol info 'Interactive Multi-Game Demo Disc - July 2002 (USA).rvz:files/zz_StarFox051702_e3.tgc:files/default.dol'`
This opens a TGC file inside an RVZ disc image, then reads `default.dol` in the FST.
Another example:
`dtk rel info 'Legend of Zelda, The - The Wind Waker (USA).rvz:files/RELS.arc:mmem/f_pc_profile_lst.rel'`
This opens a RARC archive inside an RVZ disc image, loads the Yaz0-compressed REL and
decompresses it on the fly.
This all operates in memory with minimal overhead, with no need to extract temporary files.
Supported container formats:
- Disc images (ISO/GCM, WIA/RVZ, WBFS, CISO, NFS, GCZ, TGC)
- RARC/SZS and U8 (.arc)
Supported compression formats:
- Yaz0 (SZS)
- Yay0 (SZP)
- NLZSS (.lz)
Additionally, projects can utilize a new configuration key `object_base`:
```
object: orig/GZLE01/sys/main.dol
modules:
- object: orig/GZLE01/files/RELS.arc:rels/mmem/f_pc_profile_lst.rel
```
becomes
```
object_base: orig/GZLE01
object: sys/main.dol
modules:
- object: files/RELS.arc:mmem/f_pc_profile_lst.rel
```
When loading the objects, decomp-toolkit will automatically check the `object_base`
directory for any disc images. (They can be named anything, but must be in the folder
root) If one is found, all objects will be fetched from the disc image itself, rather
than having to extract the files manually.
While still a work in progress, two new `vfs` commands were added: `vfs ls` and `vfs cp`.
These commands are very barebones currently, but allow listing directory contents and
extracting files from decomp-toolkit's vfs representation:
```
❯ dtk vfs ls disc.rvz:
files
sys
❯ dtk vfs ls disc.rvz:sys
boot.bin
bi2.bin
apploader.bin
fst.bin
main.dol
❯ dtk vfs cp disc.rvz:sys/main.dol .
```
2024-10-04 03:50:35 +00:00
|
|
|
"zerocopy 0.8.0",
|
2024-05-01 06:12:20 +00:00
|
|
|
"zstd",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "nodtool"
|
Load objects from disc image & `vfs` module
Revamps support for container paths and centralizes logic into a VFS (virtual file system) module.
The new VFS architecture supports disc images and any layer of nesting.
For example, the following command works:
`dtk dol info 'Interactive Multi-Game Demo Disc - July 2002 (USA).rvz:files/zz_StarFox051702_e3.tgc:files/default.dol'`
This opens a TGC file inside an RVZ disc image, then reads `default.dol` in the FST.
Another example:
`dtk rel info 'Legend of Zelda, The - The Wind Waker (USA).rvz:files/RELS.arc:mmem/f_pc_profile_lst.rel'`
This opens a RARC archive inside an RVZ disc image, loads the Yaz0-compressed REL and
decompresses it on the fly.
This all operates in memory with minimal overhead, with no need to extract temporary files.
Supported container formats:
- Disc images (ISO/GCM, WIA/RVZ, WBFS, CISO, NFS, GCZ, TGC)
- RARC/SZS and U8 (.arc)
Supported compression formats:
- Yaz0 (SZS)
- Yay0 (SZP)
- NLZSS (.lz)
Additionally, projects can utilize a new configuration key `object_base`:
```
object: orig/GZLE01/sys/main.dol
modules:
- object: orig/GZLE01/files/RELS.arc:rels/mmem/f_pc_profile_lst.rel
```
becomes
```
object_base: orig/GZLE01
object: sys/main.dol
modules:
- object: files/RELS.arc:mmem/f_pc_profile_lst.rel
```
When loading the objects, decomp-toolkit will automatically check the `object_base`
directory for any disc images. (They can be named anything, but must be in the folder
root) If one is found, all objects will be fetched from the disc image itself, rather
than having to extract the files manually.
While still a work in progress, two new `vfs` commands were added: `vfs ls` and `vfs cp`.
These commands are very barebones currently, but allow listing directory contents and
extracting files from decomp-toolkit's vfs representation:
```
❯ dtk vfs ls disc.rvz:
files
sys
❯ dtk vfs ls disc.rvz:sys
boot.bin
bi2.bin
apploader.bin
fst.bin
main.dol
❯ dtk vfs cp disc.rvz:sys/main.dol .
```
2024-10-04 03:50:35 +00:00
|
|
|
version = "1.4.0"
|
2024-09-05 02:09:56 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
Load objects from disc image & `vfs` module
Revamps support for container paths and centralizes logic into a VFS (virtual file system) module.
The new VFS architecture supports disc images and any layer of nesting.
For example, the following command works:
`dtk dol info 'Interactive Multi-Game Demo Disc - July 2002 (USA).rvz:files/zz_StarFox051702_e3.tgc:files/default.dol'`
This opens a TGC file inside an RVZ disc image, then reads `default.dol` in the FST.
Another example:
`dtk rel info 'Legend of Zelda, The - The Wind Waker (USA).rvz:files/RELS.arc:mmem/f_pc_profile_lst.rel'`
This opens a RARC archive inside an RVZ disc image, loads the Yaz0-compressed REL and
decompresses it on the fly.
This all operates in memory with minimal overhead, with no need to extract temporary files.
Supported container formats:
- Disc images (ISO/GCM, WIA/RVZ, WBFS, CISO, NFS, GCZ, TGC)
- RARC/SZS and U8 (.arc)
Supported compression formats:
- Yaz0 (SZS)
- Yay0 (SZP)
- NLZSS (.lz)
Additionally, projects can utilize a new configuration key `object_base`:
```
object: orig/GZLE01/sys/main.dol
modules:
- object: orig/GZLE01/files/RELS.arc:rels/mmem/f_pc_profile_lst.rel
```
becomes
```
object_base: orig/GZLE01
object: sys/main.dol
modules:
- object: files/RELS.arc:mmem/f_pc_profile_lst.rel
```
When loading the objects, decomp-toolkit will automatically check the `object_base`
directory for any disc images. (They can be named anything, but must be in the folder
root) If one is found, all objects will be fetched from the disc image itself, rather
than having to extract the files manually.
While still a work in progress, two new `vfs` commands were added: `vfs ls` and `vfs cp`.
These commands are very barebones currently, but allow listing directory contents and
extracting files from decomp-toolkit's vfs representation:
```
❯ dtk vfs ls disc.rvz:
files
sys
❯ dtk vfs ls disc.rvz:sys
boot.bin
bi2.bin
apploader.bin
fst.bin
main.dol
❯ dtk vfs cp disc.rvz:sys/main.dol .
```
2024-10-04 03:50:35 +00:00
|
|
|
checksum = "598b0c24bb98d0094d37e8dc8d83bb600d857c9e42a475806ac1667ec52afbb3"
|
2024-05-01 06:12:20 +00:00
|
|
|
dependencies = [
|
|
|
|
"argp",
|
|
|
|
"base16ct",
|
|
|
|
"crc32fast",
|
|
|
|
"digest",
|
|
|
|
"enable-ansi-support",
|
|
|
|
"hex",
|
|
|
|
"indicatif",
|
|
|
|
"itertools",
|
|
|
|
"log",
|
|
|
|
"md-5",
|
2024-09-29 18:20:28 +00:00
|
|
|
"mimalloc",
|
2024-05-01 06:12:20 +00:00
|
|
|
"nod",
|
|
|
|
"quick-xml",
|
|
|
|
"serde",
|
|
|
|
"sha1",
|
|
|
|
"size",
|
2024-09-10 02:36:18 +00:00
|
|
|
"supports-color 3.0.1",
|
2024-05-01 06:12:20 +00:00
|
|
|
"tracing",
|
|
|
|
"tracing-attributes",
|
|
|
|
"tracing-subscriber",
|
|
|
|
"xxhash-rust",
|
Load objects from disc image & `vfs` module
Revamps support for container paths and centralizes logic into a VFS (virtual file system) module.
The new VFS architecture supports disc images and any layer of nesting.
For example, the following command works:
`dtk dol info 'Interactive Multi-Game Demo Disc - July 2002 (USA).rvz:files/zz_StarFox051702_e3.tgc:files/default.dol'`
This opens a TGC file inside an RVZ disc image, then reads `default.dol` in the FST.
Another example:
`dtk rel info 'Legend of Zelda, The - The Wind Waker (USA).rvz:files/RELS.arc:mmem/f_pc_profile_lst.rel'`
This opens a RARC archive inside an RVZ disc image, loads the Yaz0-compressed REL and
decompresses it on the fly.
This all operates in memory with minimal overhead, with no need to extract temporary files.
Supported container formats:
- Disc images (ISO/GCM, WIA/RVZ, WBFS, CISO, NFS, GCZ, TGC)
- RARC/SZS and U8 (.arc)
Supported compression formats:
- Yaz0 (SZS)
- Yay0 (SZP)
- NLZSS (.lz)
Additionally, projects can utilize a new configuration key `object_base`:
```
object: orig/GZLE01/sys/main.dol
modules:
- object: orig/GZLE01/files/RELS.arc:rels/mmem/f_pc_profile_lst.rel
```
becomes
```
object_base: orig/GZLE01
object: sys/main.dol
modules:
- object: files/RELS.arc:mmem/f_pc_profile_lst.rel
```
When loading the objects, decomp-toolkit will automatically check the `object_base`
directory for any disc images. (They can be named anything, but must be in the folder
root) If one is found, all objects will be fetched from the disc image itself, rather
than having to extract the files manually.
While still a work in progress, two new `vfs` commands were added: `vfs ls` and `vfs cp`.
These commands are very barebones currently, but allow listing directory contents and
extracting files from decomp-toolkit's vfs representation:
```
❯ dtk vfs ls disc.rvz:
files
sys
❯ dtk vfs ls disc.rvz:sys
boot.bin
bi2.bin
apploader.bin
fst.bin
main.dol
❯ dtk vfs cp disc.rvz:sys/main.dol .
```
2024-10-04 03:50:35 +00:00
|
|
|
"zerocopy 0.8.0",
|
2024-09-05 02:09:56 +00:00
|
|
|
"zstd",
|
2024-05-01 06:12:20 +00:00
|
|
|
]
|
|
|
|
|
2023-08-25 04:54:29 +00:00
|
|
|
[[package]]
|
|
|
|
name = "nu-ansi-term"
|
|
|
|
version = "0.46.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
|
|
|
|
dependencies = [
|
|
|
|
"overload",
|
|
|
|
"winapi",
|
|
|
|
]
|
|
|
|
|
2022-12-10 06:28:23 +00:00
|
|
|
[[package]]
|
|
|
|
name = "num-traits"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "0.2.19"
|
2022-12-10 06:28:23 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
2022-12-10 06:28:23 +00:00
|
|
|
dependencies = [
|
|
|
|
"autocfg",
|
|
|
|
]
|
|
|
|
|
2023-01-18 20:52:38 +00:00
|
|
|
[[package]]
|
|
|
|
name = "num_enum"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "0.7.3"
|
2023-01-18 20:52:38 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "4e613fc340b2220f734a8595782c551f1250e969d87d3be1ae0579e8d4065179"
|
2023-01-18 20:52:38 +00:00
|
|
|
dependencies = [
|
|
|
|
"num_enum_derive",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "num_enum_derive"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "0.7.3"
|
2023-01-18 20:52:38 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "af1844ef2428cc3e1cb900be36181049ef3d3193c63e43026cfe202983b27a56"
|
2023-01-18 20:52:38 +00:00
|
|
|
dependencies = [
|
|
|
|
"proc-macro-crate",
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
2024-09-29 18:20:28 +00:00
|
|
|
"syn 2.0.79",
|
2024-02-29 05:27:38 +00:00
|
|
|
]
|
|
|
|
|
2024-05-01 06:12:20 +00:00
|
|
|
[[package]]
|
|
|
|
name = "number_prefix"
|
|
|
|
version = "0.4.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
|
|
|
|
|
2024-02-29 05:27:38 +00:00
|
|
|
[[package]]
|
|
|
|
name = "objdiff-core"
|
2024-10-04 04:24:54 +00:00
|
|
|
version = "2.2.2"
|
2024-09-10 02:36:18 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-10-04 04:24:54 +00:00
|
|
|
checksum = "3ec5e2ba3ab275d85ec500ed6dd2c617015d7bf72435b423785457def47217fc"
|
2024-02-29 05:27:38 +00:00
|
|
|
dependencies = [
|
|
|
|
"anyhow",
|
|
|
|
"byteorder",
|
|
|
|
"cwdemangle",
|
2024-10-04 04:24:54 +00:00
|
|
|
"cwextab",
|
2024-02-29 05:27:38 +00:00
|
|
|
"filetime",
|
|
|
|
"flagset",
|
|
|
|
"log",
|
|
|
|
"memmap2",
|
|
|
|
"num-traits",
|
2024-09-10 02:36:18 +00:00
|
|
|
"object",
|
|
|
|
"pbjson-build",
|
2024-02-29 05:27:38 +00:00
|
|
|
"ppc750cl",
|
2024-09-10 02:36:18 +00:00
|
|
|
"prost-build",
|
2024-02-29 05:27:38 +00:00
|
|
|
"serde",
|
|
|
|
"similar",
|
2024-06-04 02:31:06 +00:00
|
|
|
"strum",
|
2024-09-10 02:36:18 +00:00
|
|
|
"tsify-next",
|
|
|
|
"wasm-bindgen",
|
2023-07-21 21:59:07 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "object"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "0.36.4"
|
2024-03-14 00:23:09 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "084f1a5821ac4c651660a94a7153d27ac9d8a53736203f58b31945ded098070a"
|
2022-11-27 06:37:29 +00:00
|
|
|
dependencies = [
|
2022-12-10 06:28:23 +00:00
|
|
|
"crc32fast",
|
2024-10-04 04:24:54 +00:00
|
|
|
"hashbrown 0.14.5",
|
2023-11-18 20:03:24 +00:00
|
|
|
"indexmap",
|
2022-11-27 06:37:29 +00:00
|
|
|
"memchr",
|
|
|
|
]
|
|
|
|
|
2022-12-10 06:28:23 +00:00
|
|
|
[[package]]
|
|
|
|
name = "once_cell"
|
2024-09-29 18:20:28 +00:00
|
|
|
version = "1.20.1"
|
2022-12-10 06:28:23 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-29 18:20:28 +00:00
|
|
|
checksum = "82881c4be219ab5faaf2ad5e5e5ecdff8c66bd7402ca3160975c93b24961afd1"
|
|
|
|
dependencies = [
|
|
|
|
"portable-atomic",
|
|
|
|
]
|
2022-12-10 06:28:23 +00:00
|
|
|
|
2024-05-01 00:03:00 +00:00
|
|
|
[[package]]
|
|
|
|
name = "orthrus-core"
|
|
|
|
version = "0.2.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "ad3db74dec173db0794aadee37558a5ca1f944ed0bd0c340bbad7103af0dc06a"
|
|
|
|
dependencies = [
|
|
|
|
"snafu",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "orthrus-ncompress"
|
2024-06-10 23:40:46 +00:00
|
|
|
version = "0.2.1"
|
2024-05-01 00:03:00 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-06-10 23:40:46 +00:00
|
|
|
checksum = "d2640cb31ca7922ee276a079c0fc593e0a8003967fe4d815e153a585ba05d3c1"
|
2024-05-01 00:03:00 +00:00
|
|
|
dependencies = [
|
|
|
|
"orthrus-core",
|
|
|
|
"snafu",
|
|
|
|
]
|
|
|
|
|
2023-08-25 04:54:29 +00:00
|
|
|
[[package]]
|
|
|
|
name = "overload"
|
|
|
|
version = "0.1.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
|
|
|
|
|
2023-09-03 14:42:52 +00:00
|
|
|
[[package]]
|
|
|
|
name = "owo-colors"
|
2024-09-29 18:20:28 +00:00
|
|
|
version = "4.1.0"
|
2023-09-03 14:42:52 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-29 18:20:28 +00:00
|
|
|
checksum = "fb37767f6569cd834a413442455e0f066d0d522de8630436e2a1761d9726ba56"
|
2023-09-03 14:42:52 +00:00
|
|
|
dependencies = [
|
2024-03-14 00:23:09 +00:00
|
|
|
"supports-color 2.1.0",
|
2024-09-29 18:20:28 +00:00
|
|
|
"supports-color 3.0.1",
|
2023-09-03 14:42:52 +00:00
|
|
|
]
|
|
|
|
|
2024-06-04 02:31:06 +00:00
|
|
|
[[package]]
|
|
|
|
name = "parking_lot"
|
|
|
|
version = "0.12.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
|
|
|
|
dependencies = [
|
|
|
|
"lock_api",
|
|
|
|
"parking_lot_core",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "parking_lot_core"
|
|
|
|
version = "0.9.10"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
|
|
|
|
dependencies = [
|
|
|
|
"cfg-if",
|
|
|
|
"libc",
|
2024-09-10 02:36:18 +00:00
|
|
|
"redox_syscall",
|
2024-06-04 02:31:06 +00:00
|
|
|
"smallvec",
|
2024-09-10 02:36:18 +00:00
|
|
|
"windows-targets",
|
2024-06-04 02:31:06 +00:00
|
|
|
]
|
|
|
|
|
2023-08-25 04:54:29 +00:00
|
|
|
[[package]]
|
|
|
|
name = "path-slash"
|
|
|
|
version = "0.2.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "1e91099d4268b0e11973f036e885d652fb0b21fedcf69738c627f94db6a44f42"
|
|
|
|
|
2024-09-10 02:36:18 +00:00
|
|
|
[[package]]
|
|
|
|
name = "pbjson-build"
|
|
|
|
version = "0.7.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "6eea3058763d6e656105d1403cb04e0a41b7bbac6362d413e7c33be0c32279c9"
|
|
|
|
dependencies = [
|
|
|
|
"heck",
|
|
|
|
"itertools",
|
|
|
|
"prost",
|
|
|
|
"prost-types",
|
|
|
|
]
|
|
|
|
|
2023-08-03 22:55:57 +00:00
|
|
|
[[package]]
|
|
|
|
name = "petgraph"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "0.6.5"
|
2023-08-03 22:55:57 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db"
|
2023-08-03 22:55:57 +00:00
|
|
|
dependencies = [
|
2024-03-14 00:23:09 +00:00
|
|
|
"fixedbitset 0.4.2",
|
2023-11-18 20:03:24 +00:00
|
|
|
"indexmap",
|
2023-08-03 22:55:57 +00:00
|
|
|
]
|
|
|
|
|
2023-08-25 04:54:29 +00:00
|
|
|
[[package]]
|
|
|
|
name = "pin-project-lite"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "0.2.14"
|
2023-08-25 04:54:29 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02"
|
2023-08-25 04:54:29 +00:00
|
|
|
|
2024-05-01 06:12:20 +00:00
|
|
|
[[package]]
|
|
|
|
name = "pkg-config"
|
2024-09-29 18:20:28 +00:00
|
|
|
version = "0.3.31"
|
2024-05-01 06:12:20 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-29 18:20:28 +00:00
|
|
|
checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2"
|
2024-05-01 06:12:20 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "portable-atomic"
|
2024-09-29 18:20:28 +00:00
|
|
|
version = "1.9.0"
|
2024-05-01 06:12:20 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-29 18:20:28 +00:00
|
|
|
checksum = "cc9c68a3f6da06753e9335d63e27f6b9754dd1920d941135b7ea8224f141adb2"
|
2024-05-01 06:12:20 +00:00
|
|
|
|
2022-12-10 06:28:23 +00:00
|
|
|
[[package]]
|
|
|
|
name = "ppc750cl"
|
2024-09-29 18:20:28 +00:00
|
|
|
version = "0.3.2"
|
2024-09-10 02:36:18 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-29 18:20:28 +00:00
|
|
|
checksum = "be8e5b9d48ab30323e8ece6d655d20fc16a570e4f1af0de6890d3e9ebd284ba0"
|
2024-09-10 02:36:18 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "prettyplease"
|
|
|
|
version = "0.2.22"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "479cf940fbbb3426c32c5d5176f62ad57549a0bb84773423ba8be9d089f5faba"
|
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
2024-09-29 18:20:28 +00:00
|
|
|
"syn 2.0.79",
|
2024-09-10 02:36:18 +00:00
|
|
|
]
|
2022-12-10 06:28:23 +00:00
|
|
|
|
2022-11-27 06:37:29 +00:00
|
|
|
[[package]]
|
2023-01-18 20:52:38 +00:00
|
|
|
name = "proc-macro-crate"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "3.2.0"
|
2022-11-27 06:37:29 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "8ecf48c7ca261d60b74ab1a7b20da18bede46776b2e55535cb958eb595c5fa7b"
|
2022-11-27 06:37:29 +00:00
|
|
|
dependencies = [
|
2023-11-18 20:03:24 +00:00
|
|
|
"toml_edit",
|
2022-11-27 06:37:29 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "proc-macro2"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "1.0.86"
|
2022-11-27 06:37:29 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77"
|
2022-11-27 06:37:29 +00:00
|
|
|
dependencies = [
|
|
|
|
"unicode-ident",
|
|
|
|
]
|
|
|
|
|
2024-09-10 02:36:18 +00:00
|
|
|
[[package]]
|
|
|
|
name = "prost"
|
2024-09-29 18:20:28 +00:00
|
|
|
version = "0.13.3"
|
2024-09-10 02:36:18 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-29 18:20:28 +00:00
|
|
|
checksum = "7b0487d90e047de87f984913713b85c601c05609aad5b0df4b4573fbf69aa13f"
|
2024-09-10 02:36:18 +00:00
|
|
|
dependencies = [
|
|
|
|
"bytes",
|
|
|
|
"prost-derive",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "prost-build"
|
2024-09-29 18:20:28 +00:00
|
|
|
version = "0.13.3"
|
2024-09-10 02:36:18 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-29 18:20:28 +00:00
|
|
|
checksum = "0c1318b19085f08681016926435853bbf7858f9c082d0999b80550ff5d9abe15"
|
2024-09-10 02:36:18 +00:00
|
|
|
dependencies = [
|
|
|
|
"bytes",
|
|
|
|
"heck",
|
|
|
|
"itertools",
|
|
|
|
"log",
|
|
|
|
"multimap",
|
|
|
|
"once_cell",
|
|
|
|
"petgraph",
|
|
|
|
"prettyplease",
|
|
|
|
"prost",
|
|
|
|
"prost-types",
|
|
|
|
"regex",
|
2024-09-29 18:20:28 +00:00
|
|
|
"syn 2.0.79",
|
2024-09-10 02:36:18 +00:00
|
|
|
"tempfile",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "prost-derive"
|
2024-09-29 18:20:28 +00:00
|
|
|
version = "0.13.3"
|
2024-09-10 02:36:18 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-29 18:20:28 +00:00
|
|
|
checksum = "e9552f850d5f0964a4e4d0bf306459ac29323ddfbae05e35a7c0d35cb0803cc5"
|
2024-09-10 02:36:18 +00:00
|
|
|
dependencies = [
|
|
|
|
"anyhow",
|
|
|
|
"itertools",
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
2024-09-29 18:20:28 +00:00
|
|
|
"syn 2.0.79",
|
2024-09-10 02:36:18 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "prost-types"
|
2024-09-29 18:20:28 +00:00
|
|
|
version = "0.13.3"
|
2024-09-10 02:36:18 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-29 18:20:28 +00:00
|
|
|
checksum = "4759aa0d3a6232fb8dbdb97b61de2c20047c68aca932c7ed76da9d788508d670"
|
2024-09-10 02:36:18 +00:00
|
|
|
dependencies = [
|
|
|
|
"prost",
|
|
|
|
]
|
|
|
|
|
2023-08-03 22:55:57 +00:00
|
|
|
[[package]]
|
|
|
|
name = "pulldown-cmark"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "0.9.6"
|
2023-08-03 22:55:57 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "57206b407293d2bcd3af849ce869d52068623f19e1b5ff8e8778e3309439682b"
|
2023-08-03 22:55:57 +00:00
|
|
|
dependencies = [
|
2024-09-10 02:36:18 +00:00
|
|
|
"bitflags 2.6.0",
|
2023-08-03 22:55:57 +00:00
|
|
|
"getopts",
|
|
|
|
"memchr",
|
|
|
|
"unicase",
|
|
|
|
]
|
|
|
|
|
2024-05-01 06:12:20 +00:00
|
|
|
[[package]]
|
|
|
|
name = "quick-xml"
|
2024-09-29 18:20:28 +00:00
|
|
|
version = "0.36.2"
|
2024-05-01 06:12:20 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-29 18:20:28 +00:00
|
|
|
checksum = "f7649a7b4df05aed9ea7ec6f628c67c9953a43869b8bc50929569b2999d443fe"
|
2024-05-01 06:12:20 +00:00
|
|
|
dependencies = [
|
|
|
|
"memchr",
|
|
|
|
"serde",
|
|
|
|
]
|
|
|
|
|
2022-11-27 06:37:29 +00:00
|
|
|
[[package]]
|
|
|
|
name = "quote"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "1.0.37"
|
2022-11-27 06:37:29 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af"
|
2022-11-27 06:37:29 +00:00
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
]
|
|
|
|
|
2023-08-25 04:54:29 +00:00
|
|
|
[[package]]
|
|
|
|
name = "rayon"
|
2024-05-01 02:40:14 +00:00
|
|
|
version = "1.10.0"
|
2023-08-25 04:54:29 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-05-01 02:40:14 +00:00
|
|
|
checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
|
2023-08-25 04:54:29 +00:00
|
|
|
dependencies = [
|
|
|
|
"either",
|
|
|
|
"rayon-core",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "rayon-core"
|
2024-03-14 00:23:09 +00:00
|
|
|
version = "1.12.1"
|
2023-08-25 04:54:29 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-03-14 00:23:09 +00:00
|
|
|
checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
|
2023-08-25 04:54:29 +00:00
|
|
|
dependencies = [
|
|
|
|
"crossbeam-deque",
|
|
|
|
"crossbeam-utils",
|
|
|
|
]
|
|
|
|
|
2022-11-28 04:43:46 +00:00
|
|
|
[[package]]
|
|
|
|
name = "redox_syscall"
|
2024-10-04 04:24:54 +00:00
|
|
|
version = "0.5.7"
|
2024-06-04 02:31:06 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-10-04 04:24:54 +00:00
|
|
|
checksum = "9b6dfecf2c74bce2466cabf93f6664d6998a69eb21e39f4207930065b27b771f"
|
2024-06-04 02:31:06 +00:00
|
|
|
dependencies = [
|
2024-09-10 02:36:18 +00:00
|
|
|
"bitflags 2.6.0",
|
2022-11-28 04:43:46 +00:00
|
|
|
]
|
|
|
|
|
2022-11-27 06:37:29 +00:00
|
|
|
[[package]]
|
|
|
|
name = "regex"
|
2024-09-29 18:20:28 +00:00
|
|
|
version = "1.11.0"
|
2022-11-27 06:37:29 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-29 18:20:28 +00:00
|
|
|
checksum = "38200e5ee88914975b69f657f0801b6f6dccafd44fd9326302a4aaeecfacb1d8"
|
2023-07-21 21:59:07 +00:00
|
|
|
dependencies = [
|
|
|
|
"aho-corasick",
|
|
|
|
"memchr",
|
2024-09-29 18:20:28 +00:00
|
|
|
"regex-automata 0.4.8",
|
|
|
|
"regex-syntax 0.8.5",
|
2023-09-03 14:42:52 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "regex-automata"
|
|
|
|
version = "0.1.10"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
|
|
|
|
dependencies = [
|
|
|
|
"regex-syntax 0.6.29",
|
2023-07-21 21:59:07 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "regex-automata"
|
2024-09-29 18:20:28 +00:00
|
|
|
version = "0.4.8"
|
2023-07-21 21:59:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-29 18:20:28 +00:00
|
|
|
checksum = "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3"
|
2022-11-27 06:37:29 +00:00
|
|
|
dependencies = [
|
|
|
|
"aho-corasick",
|
|
|
|
"memchr",
|
2024-09-29 18:20:28 +00:00
|
|
|
"regex-syntax 0.8.5",
|
2022-11-27 06:37:29 +00:00
|
|
|
]
|
|
|
|
|
2023-09-03 14:42:52 +00:00
|
|
|
[[package]]
|
|
|
|
name = "regex-syntax"
|
|
|
|
version = "0.6.29"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
|
|
|
|
|
2023-11-18 20:03:24 +00:00
|
|
|
[[package]]
|
|
|
|
name = "regex-syntax"
|
2024-09-29 18:20:28 +00:00
|
|
|
version = "0.8.5"
|
2023-11-18 20:03:24 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-29 18:20:28 +00:00
|
|
|
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
2023-11-18 20:03:24 +00:00
|
|
|
|
2023-01-28 04:15:52 +00:00
|
|
|
[[package]]
|
|
|
|
name = "rustc-demangle"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "0.1.24"
|
2023-01-28 04:15:52 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
|
2023-01-28 04:15:52 +00:00
|
|
|
|
2023-09-03 14:42:52 +00:00
|
|
|
[[package]]
|
|
|
|
name = "rustc-hash"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "2.0.0"
|
2023-09-03 14:42:52 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "583034fd73374156e66797ed8e5b0d5690409c9226b22d87cb7f19821c05d152"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "rustix"
|
2024-09-29 18:20:28 +00:00
|
|
|
version = "0.38.37"
|
2024-09-10 02:36:18 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-29 18:20:28 +00:00
|
|
|
checksum = "8acb788b847c24f28525660c4d7758620a7210875711f79e7f663cc152726811"
|
2024-09-10 02:36:18 +00:00
|
|
|
dependencies = [
|
|
|
|
"bitflags 2.6.0",
|
|
|
|
"errno",
|
|
|
|
"libc",
|
|
|
|
"linux-raw-sys",
|
|
|
|
"windows-sys 0.52.0",
|
|
|
|
]
|
2023-09-03 14:42:52 +00:00
|
|
|
|
2024-06-04 02:31:06 +00:00
|
|
|
[[package]]
|
|
|
|
name = "rustversion"
|
|
|
|
version = "1.0.17"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "955d28af4278de8121b7ebeb796b6a45735dc01436d898801014aced2773a3d6"
|
|
|
|
|
2023-01-18 20:52:38 +00:00
|
|
|
[[package]]
|
|
|
|
name = "ryu"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "1.0.18"
|
2023-01-18 20:52:38 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
|
2023-01-18 20:52:38 +00:00
|
|
|
|
2023-11-18 18:56:58 +00:00
|
|
|
[[package]]
|
|
|
|
name = "same-file"
|
|
|
|
version = "1.0.6"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
|
|
dependencies = [
|
|
|
|
"winapi-util",
|
|
|
|
]
|
|
|
|
|
2023-12-21 03:28:30 +00:00
|
|
|
[[package]]
|
|
|
|
name = "sanitise-file-name"
|
|
|
|
version = "1.0.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "19d36299972b96b8ae7e8f04ecbf75fb41a27bf3781af00abcf57609774cb911"
|
|
|
|
|
2024-06-04 02:31:06 +00:00
|
|
|
[[package]]
|
|
|
|
name = "scopeguard"
|
|
|
|
version = "1.2.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
|
|
|
2022-11-27 06:37:29 +00:00
|
|
|
[[package]]
|
|
|
|
name = "serde"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "1.0.210"
|
2022-11-27 06:37:29 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "c8e3592472072e6e22e0a54d5904d9febf8508f65fb8552499a1abc7d1078c3a"
|
2022-12-10 06:28:23 +00:00
|
|
|
dependencies = [
|
|
|
|
"serde_derive",
|
|
|
|
]
|
|
|
|
|
2024-09-10 02:36:18 +00:00
|
|
|
[[package]]
|
|
|
|
name = "serde-wasm-bindgen"
|
|
|
|
version = "0.6.5"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "8302e169f0eddcc139c70f139d19d6467353af16f9fce27e8c30158036a1e16b"
|
|
|
|
dependencies = [
|
|
|
|
"js-sys",
|
|
|
|
"serde",
|
|
|
|
"wasm-bindgen",
|
|
|
|
]
|
|
|
|
|
2022-12-10 06:28:23 +00:00
|
|
|
[[package]]
|
|
|
|
name = "serde_derive"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "1.0.210"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "243902eda00fad750862fc144cea25caca5e20d615af0a81bee94ca738f1df1f"
|
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
2024-09-29 18:20:28 +00:00
|
|
|
"syn 2.0.79",
|
2024-09-10 02:36:18 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "serde_derive_internals"
|
|
|
|
version = "0.29.1"
|
2022-12-10 06:28:23 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711"
|
2022-12-10 06:28:23 +00:00
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
2024-09-29 18:20:28 +00:00
|
|
|
"syn 2.0.79",
|
2022-12-10 06:28:23 +00:00
|
|
|
]
|
2022-11-27 06:37:29 +00:00
|
|
|
|
2023-08-06 19:46:51 +00:00
|
|
|
[[package]]
|
|
|
|
name = "serde_json"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "1.0.128"
|
2023-08-06 19:46:51 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "6ff5456707a1de34e7e37f2a6fd3d3f808c318259cbd01ab6377795054b483d8"
|
2023-08-06 19:46:51 +00:00
|
|
|
dependencies = [
|
|
|
|
"itoa",
|
2024-09-10 02:36:18 +00:00
|
|
|
"memchr",
|
2023-08-06 19:46:51 +00:00
|
|
|
"ryu",
|
|
|
|
"serde",
|
|
|
|
]
|
|
|
|
|
2023-01-18 20:52:38 +00:00
|
|
|
[[package]]
|
|
|
|
name = "serde_repr"
|
2024-05-01 02:40:14 +00:00
|
|
|
version = "0.1.19"
|
2023-01-18 20:52:38 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-05-01 02:40:14 +00:00
|
|
|
checksum = "6c64451ba24fc7a6a2d60fc75dd9c83c90903b19028d4eff35e88fc1e86564e9"
|
2023-01-18 20:52:38 +00:00
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
2024-09-29 18:20:28 +00:00
|
|
|
"syn 2.0.79",
|
2023-01-18 20:52:38 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "serde_yaml"
|
2024-05-01 02:40:14 +00:00
|
|
|
version = "0.9.34+deprecated"
|
2023-01-18 20:52:38 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-05-01 02:40:14 +00:00
|
|
|
checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
|
2023-01-18 20:52:38 +00:00
|
|
|
dependencies = [
|
2023-11-18 20:03:24 +00:00
|
|
|
"indexmap",
|
2023-01-18 20:52:38 +00:00
|
|
|
"itoa",
|
|
|
|
"ryu",
|
|
|
|
"serde",
|
|
|
|
"unsafe-libyaml",
|
|
|
|
]
|
|
|
|
|
2022-11-27 06:37:29 +00:00
|
|
|
[[package]]
|
|
|
|
name = "sha-1"
|
2023-07-21 21:59:07 +00:00
|
|
|
version = "0.10.1"
|
2022-11-27 06:37:29 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-07-21 21:59:07 +00:00
|
|
|
checksum = "f5058ada175748e33390e40e872bd0fe59a19f265d0158daa551c5a88a76009c"
|
2022-11-27 06:37:29 +00:00
|
|
|
dependencies = [
|
|
|
|
"cfg-if",
|
|
|
|
"cpufeatures",
|
|
|
|
"digest",
|
|
|
|
]
|
|
|
|
|
2024-05-01 06:12:20 +00:00
|
|
|
[[package]]
|
|
|
|
name = "sha1"
|
|
|
|
version = "0.10.6"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
|
|
|
|
dependencies = [
|
|
|
|
"cfg-if",
|
|
|
|
"cpufeatures",
|
|
|
|
"digest",
|
|
|
|
]
|
|
|
|
|
2023-08-25 04:54:29 +00:00
|
|
|
[[package]]
|
|
|
|
name = "sharded-slab"
|
2023-11-18 20:03:24 +00:00
|
|
|
version = "0.1.7"
|
2023-08-25 04:54:29 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-11-18 20:03:24 +00:00
|
|
|
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
|
2023-08-25 04:54:29 +00:00
|
|
|
dependencies = [
|
|
|
|
"lazy_static",
|
|
|
|
]
|
|
|
|
|
2024-09-10 02:36:18 +00:00
|
|
|
[[package]]
|
|
|
|
name = "shlex"
|
|
|
|
version = "1.3.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
|
|
|
2024-06-04 02:31:06 +00:00
|
|
|
[[package]]
|
|
|
|
name = "signal-hook"
|
|
|
|
version = "0.3.17"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "8621587d4798caf8eb44879d42e56b9a93ea5dcd315a6487c357130095b62801"
|
|
|
|
dependencies = [
|
|
|
|
"libc",
|
|
|
|
"signal-hook-registry",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "signal-hook-mio"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "0.2.4"
|
2024-06-04 02:31:06 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "34db1a06d485c9142248b7a054f034b349b212551f3dfd19c94d45a754a217cd"
|
2024-06-04 02:31:06 +00:00
|
|
|
dependencies = [
|
|
|
|
"libc",
|
|
|
|
"mio",
|
|
|
|
"signal-hook",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "signal-hook-registry"
|
|
|
|
version = "1.4.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1"
|
|
|
|
dependencies = [
|
|
|
|
"libc",
|
|
|
|
]
|
|
|
|
|
2024-02-29 05:27:38 +00:00
|
|
|
[[package]]
|
|
|
|
name = "similar"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "2.6.0"
|
2024-02-29 05:27:38 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "1de1d4f81173b03af4c0cbed3c898f6bff5b870e4a7f5d6f4057d62a7a4b686e"
|
2024-02-29 05:27:38 +00:00
|
|
|
|
2024-05-01 06:12:20 +00:00
|
|
|
[[package]]
|
|
|
|
name = "size"
|
|
|
|
version = "0.4.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "9fed904c7fb2856d868b92464fc8fa597fce366edea1a9cbfaa8cb5fe080bd6d"
|
|
|
|
|
2022-12-10 06:28:23 +00:00
|
|
|
[[package]]
|
|
|
|
name = "smallvec"
|
2024-05-01 02:40:14 +00:00
|
|
|
version = "1.13.2"
|
2022-12-10 06:28:23 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-05-01 02:40:14 +00:00
|
|
|
checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
|
2022-12-10 06:28:23 +00:00
|
|
|
|
2024-05-01 00:03:00 +00:00
|
|
|
[[package]]
|
|
|
|
name = "snafu"
|
2024-09-29 18:20:28 +00:00
|
|
|
version = "0.8.5"
|
2024-05-01 00:03:00 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-29 18:20:28 +00:00
|
|
|
checksum = "223891c85e2a29c3fe8fb900c1fae5e69c2e42415e3177752e8718475efa5019"
|
2024-05-01 00:03:00 +00:00
|
|
|
dependencies = [
|
|
|
|
"snafu-derive",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "snafu-derive"
|
2024-09-29 18:20:28 +00:00
|
|
|
version = "0.8.5"
|
2024-05-01 00:03:00 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-29 18:20:28 +00:00
|
|
|
checksum = "03c3c6b7927ffe7ecaa769ee0e3994da3b8cafc8f444578982c83ecb161af917"
|
2024-05-01 00:03:00 +00:00
|
|
|
dependencies = [
|
2024-09-10 02:36:18 +00:00
|
|
|
"heck",
|
2024-05-01 00:03:00 +00:00
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
2024-09-29 18:20:28 +00:00
|
|
|
"syn 2.0.79",
|
2024-05-01 00:03:00 +00:00
|
|
|
]
|
|
|
|
|
2023-09-13 06:08:51 +00:00
|
|
|
[[package]]
|
|
|
|
name = "strsim"
|
|
|
|
version = "0.8.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
|
|
|
|
|
2024-06-04 02:31:06 +00:00
|
|
|
[[package]]
|
|
|
|
name = "strum"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "0.26.3"
|
2024-06-04 02:31:06 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
|
2024-06-04 02:31:06 +00:00
|
|
|
dependencies = [
|
|
|
|
"strum_macros",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "strum_macros"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "0.26.4"
|
2024-06-04 02:31:06 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
|
2024-06-04 02:31:06 +00:00
|
|
|
dependencies = [
|
2024-09-10 02:36:18 +00:00
|
|
|
"heck",
|
2024-06-04 02:31:06 +00:00
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"rustversion",
|
2024-09-29 18:20:28 +00:00
|
|
|
"syn 2.0.79",
|
2024-06-04 02:31:06 +00:00
|
|
|
]
|
|
|
|
|
2023-09-03 14:42:52 +00:00
|
|
|
[[package]]
|
|
|
|
name = "supports-color"
|
2024-03-14 00:23:09 +00:00
|
|
|
version = "2.1.0"
|
2023-09-03 14:42:52 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-03-14 00:23:09 +00:00
|
|
|
checksum = "d6398cde53adc3c4557306a96ce67b302968513830a77a95b2b17305d9719a89"
|
2023-09-03 14:42:52 +00:00
|
|
|
dependencies = [
|
2024-03-14 00:23:09 +00:00
|
|
|
"is-terminal",
|
2023-09-03 14:42:52 +00:00
|
|
|
"is_ci",
|
|
|
|
]
|
|
|
|
|
2023-10-10 16:32:05 +00:00
|
|
|
[[package]]
|
|
|
|
name = "supports-color"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "3.0.1"
|
2023-10-10 16:32:05 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "8775305acf21c96926c900ad056abeef436701108518cf890020387236ac5a77"
|
2023-10-10 16:32:05 +00:00
|
|
|
dependencies = [
|
|
|
|
"is_ci",
|
|
|
|
]
|
|
|
|
|
2022-11-27 06:37:29 +00:00
|
|
|
[[package]]
|
|
|
|
name = "syn"
|
2023-10-06 05:20:04 +00:00
|
|
|
version = "1.0.109"
|
2022-11-27 06:37:29 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-10-06 05:20:04 +00:00
|
|
|
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
2022-11-27 06:37:29 +00:00
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"unicode-ident",
|
|
|
|
]
|
|
|
|
|
2023-07-21 21:59:07 +00:00
|
|
|
[[package]]
|
|
|
|
name = "syn"
|
2024-09-29 18:20:28 +00:00
|
|
|
version = "2.0.79"
|
2023-07-21 21:59:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-29 18:20:28 +00:00
|
|
|
checksum = "89132cd0bf050864e1d38dc3bbc07a0eb8e7530af26344d3d2bbbef83499f590"
|
2023-07-21 21:59:07 +00:00
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"unicode-ident",
|
|
|
|
]
|
|
|
|
|
2023-11-18 18:56:58 +00:00
|
|
|
[[package]]
|
|
|
|
name = "syntect"
|
2024-03-14 00:23:09 +00:00
|
|
|
version = "5.2.0"
|
2023-11-18 18:56:58 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-03-14 00:23:09 +00:00
|
|
|
checksum = "874dcfa363995604333cf947ae9f751ca3af4522c60886774c4963943b4746b1"
|
2023-11-18 18:56:58 +00:00
|
|
|
dependencies = [
|
|
|
|
"bincode",
|
2024-06-04 02:31:06 +00:00
|
|
|
"bitflags 1.3.2",
|
2024-03-14 00:30:15 +00:00
|
|
|
"fancy-regex",
|
2023-11-18 18:56:58 +00:00
|
|
|
"flate2",
|
|
|
|
"fnv",
|
|
|
|
"once_cell",
|
2024-09-29 18:20:28 +00:00
|
|
|
"regex-syntax 0.8.5",
|
2023-11-18 18:56:58 +00:00
|
|
|
"serde",
|
2024-03-14 00:23:09 +00:00
|
|
|
"serde_derive",
|
2023-11-18 18:56:58 +00:00
|
|
|
"serde_json",
|
|
|
|
"thiserror",
|
|
|
|
"walkdir",
|
|
|
|
]
|
|
|
|
|
2024-09-10 02:36:18 +00:00
|
|
|
[[package]]
|
|
|
|
name = "tempfile"
|
2024-09-29 18:20:28 +00:00
|
|
|
version = "3.13.0"
|
2024-09-10 02:36:18 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-29 18:20:28 +00:00
|
|
|
checksum = "f0f2c9fc62d0beef6951ccffd757e241266a2c833136efbe35af6cd2567dca5b"
|
2024-09-10 02:36:18 +00:00
|
|
|
dependencies = [
|
|
|
|
"cfg-if",
|
|
|
|
"fastrand",
|
|
|
|
"once_cell",
|
|
|
|
"rustix",
|
|
|
|
"windows-sys 0.59.0",
|
|
|
|
]
|
|
|
|
|
2023-09-13 06:08:51 +00:00
|
|
|
[[package]]
|
|
|
|
name = "textwrap"
|
|
|
|
version = "0.11.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
|
|
|
|
dependencies = [
|
|
|
|
"unicode-width",
|
|
|
|
]
|
|
|
|
|
2022-11-27 06:37:29 +00:00
|
|
|
[[package]]
|
|
|
|
name = "thiserror"
|
2024-09-29 18:20:28 +00:00
|
|
|
version = "1.0.64"
|
2022-11-27 06:37:29 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-29 18:20:28 +00:00
|
|
|
checksum = "d50af8abc119fb8bb6dbabcfa89656f46f84aa0ac7688088608076ad2b459a84"
|
2022-11-27 06:37:29 +00:00
|
|
|
dependencies = [
|
|
|
|
"thiserror-impl",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "thiserror-impl"
|
2024-09-29 18:20:28 +00:00
|
|
|
version = "1.0.64"
|
2022-11-27 06:37:29 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-29 18:20:28 +00:00
|
|
|
checksum = "08904e7672f5eb876eaaf87e0ce17857500934f4981c4a0ab2b4aa98baac7fc3"
|
2022-11-27 06:37:29 +00:00
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
2024-09-29 18:20:28 +00:00
|
|
|
"syn 2.0.79",
|
2022-11-27 06:37:29 +00:00
|
|
|
]
|
|
|
|
|
2023-08-25 04:54:29 +00:00
|
|
|
[[package]]
|
|
|
|
name = "thread_local"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "1.1.8"
|
2023-08-25 04:54:29 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c"
|
2023-08-25 04:54:29 +00:00
|
|
|
dependencies = [
|
|
|
|
"cfg-if",
|
|
|
|
"once_cell",
|
|
|
|
]
|
|
|
|
|
2023-01-18 20:52:38 +00:00
|
|
|
[[package]]
|
2023-11-18 20:03:24 +00:00
|
|
|
name = "toml_datetime"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "0.6.8"
|
2023-11-18 20:03:24 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41"
|
2023-11-18 20:03:24 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "toml_edit"
|
2024-09-29 18:20:28 +00:00
|
|
|
version = "0.22.22"
|
2023-01-18 20:52:38 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-29 18:20:28 +00:00
|
|
|
checksum = "4ae48d6208a266e853d946088ed816055e556cc6028c5e8e2b84d9fa5dd7c7f5"
|
2023-01-18 20:52:38 +00:00
|
|
|
dependencies = [
|
2023-11-18 20:03:24 +00:00
|
|
|
"indexmap",
|
|
|
|
"toml_datetime",
|
|
|
|
"winnow",
|
2023-01-18 20:52:38 +00:00
|
|
|
]
|
|
|
|
|
2023-08-25 04:54:29 +00:00
|
|
|
[[package]]
|
|
|
|
name = "tracing"
|
2023-11-18 20:03:24 +00:00
|
|
|
version = "0.1.40"
|
2023-08-25 04:54:29 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-11-18 20:03:24 +00:00
|
|
|
checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
|
2023-08-25 04:54:29 +00:00
|
|
|
dependencies = [
|
|
|
|
"pin-project-lite",
|
|
|
|
"tracing-attributes",
|
|
|
|
"tracing-core",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "tracing-attributes"
|
2023-11-18 20:03:24 +00:00
|
|
|
version = "0.1.27"
|
2023-08-25 04:54:29 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-11-18 20:03:24 +00:00
|
|
|
checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
|
2023-08-25 04:54:29 +00:00
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
2024-09-29 18:20:28 +00:00
|
|
|
"syn 2.0.79",
|
2023-08-25 04:54:29 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "tracing-core"
|
2023-11-18 20:03:24 +00:00
|
|
|
version = "0.1.32"
|
2023-08-25 04:54:29 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-11-18 20:03:24 +00:00
|
|
|
checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
|
2023-08-25 04:54:29 +00:00
|
|
|
dependencies = [
|
|
|
|
"once_cell",
|
|
|
|
"valuable",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "tracing-log"
|
2023-11-18 20:03:24 +00:00
|
|
|
version = "0.2.0"
|
2023-08-25 04:54:29 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-11-18 20:03:24 +00:00
|
|
|
checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
|
2023-08-25 04:54:29 +00:00
|
|
|
dependencies = [
|
|
|
|
"log",
|
2023-11-18 20:03:24 +00:00
|
|
|
"once_cell",
|
2023-08-25 04:54:29 +00:00
|
|
|
"tracing-core",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "tracing-subscriber"
|
2023-11-18 20:03:24 +00:00
|
|
|
version = "0.3.18"
|
2023-08-25 04:54:29 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-11-18 20:03:24 +00:00
|
|
|
checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b"
|
2023-08-25 04:54:29 +00:00
|
|
|
dependencies = [
|
2023-09-03 14:42:52 +00:00
|
|
|
"matchers",
|
2023-08-25 04:54:29 +00:00
|
|
|
"nu-ansi-term",
|
2023-09-03 14:42:52 +00:00
|
|
|
"once_cell",
|
|
|
|
"regex",
|
2023-08-25 04:54:29 +00:00
|
|
|
"sharded-slab",
|
|
|
|
"smallvec",
|
|
|
|
"thread_local",
|
2023-09-03 14:42:52 +00:00
|
|
|
"tracing",
|
2023-08-25 04:54:29 +00:00
|
|
|
"tracing-core",
|
|
|
|
"tracing-log",
|
|
|
|
]
|
|
|
|
|
2024-09-10 02:36:18 +00:00
|
|
|
[[package]]
|
|
|
|
name = "tsify-next"
|
|
|
|
version = "0.5.4"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "2f4a645dca4ee0800f5ab60ce166deba2db6a0315de795a2691e138a3d55d756"
|
|
|
|
dependencies = [
|
|
|
|
"serde",
|
|
|
|
"serde-wasm-bindgen",
|
|
|
|
"tsify-next-macros",
|
|
|
|
"wasm-bindgen",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "tsify-next-macros"
|
|
|
|
version = "0.5.4"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "0d5c06f8a51d759bb58129e30b2631739e7e1e4579fad1f30ac09a6c88e488a6"
|
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"serde_derive_internals",
|
2024-09-29 18:20:28 +00:00
|
|
|
"syn 2.0.79",
|
2024-09-10 02:36:18 +00:00
|
|
|
]
|
|
|
|
|
2022-11-27 06:37:29 +00:00
|
|
|
[[package]]
|
|
|
|
name = "typenum"
|
2023-11-18 20:03:24 +00:00
|
|
|
version = "1.17.0"
|
2022-11-27 06:37:29 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-11-18 20:03:24 +00:00
|
|
|
checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
|
2022-11-27 06:37:29 +00:00
|
|
|
|
2023-08-03 22:55:57 +00:00
|
|
|
[[package]]
|
|
|
|
name = "unicase"
|
2023-11-18 20:03:24 +00:00
|
|
|
version = "2.7.0"
|
2023-08-03 22:55:57 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-11-18 20:03:24 +00:00
|
|
|
checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89"
|
2023-08-03 22:55:57 +00:00
|
|
|
dependencies = [
|
|
|
|
"version_check",
|
|
|
|
]
|
|
|
|
|
2022-11-27 06:37:29 +00:00
|
|
|
[[package]]
|
|
|
|
name = "unicode-ident"
|
2024-09-29 18:20:28 +00:00
|
|
|
version = "1.0.13"
|
2022-11-27 06:37:29 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-29 18:20:28 +00:00
|
|
|
checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe"
|
2022-11-27 06:37:29 +00:00
|
|
|
|
2023-08-03 22:55:57 +00:00
|
|
|
[[package]]
|
|
|
|
name = "unicode-width"
|
2024-09-29 18:20:28 +00:00
|
|
|
version = "0.1.14"
|
2023-08-03 22:55:57 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-29 18:20:28 +00:00
|
|
|
checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
|
2023-08-03 22:55:57 +00:00
|
|
|
|
2023-01-18 20:52:38 +00:00
|
|
|
[[package]]
|
|
|
|
name = "unsafe-libyaml"
|
2024-05-01 02:40:14 +00:00
|
|
|
version = "0.2.11"
|
2023-01-18 20:52:38 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-05-01 02:40:14 +00:00
|
|
|
checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
|
2023-01-18 20:52:38 +00:00
|
|
|
|
2023-08-25 04:54:29 +00:00
|
|
|
[[package]]
|
|
|
|
name = "valuable"
|
|
|
|
version = "0.1.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
|
|
|
|
|
2023-09-13 06:08:51 +00:00
|
|
|
[[package]]
|
|
|
|
name = "vec_map"
|
|
|
|
version = "0.8.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
|
|
|
|
|
2022-11-27 06:37:29 +00:00
|
|
|
[[package]]
|
|
|
|
name = "version_check"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "0.9.5"
|
2022-11-27 06:37:29 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
2022-11-27 06:37:29 +00:00
|
|
|
|
2023-11-18 18:56:58 +00:00
|
|
|
[[package]]
|
|
|
|
name = "walkdir"
|
2024-03-14 00:23:09 +00:00
|
|
|
version = "2.5.0"
|
2023-11-18 18:56:58 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-03-14 00:23:09 +00:00
|
|
|
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
2023-11-18 18:56:58 +00:00
|
|
|
dependencies = [
|
|
|
|
"same-file",
|
|
|
|
"winapi-util",
|
|
|
|
]
|
|
|
|
|
2024-06-04 02:31:06 +00:00
|
|
|
[[package]]
|
|
|
|
name = "wasi"
|
|
|
|
version = "0.11.0+wasi-snapshot-preview1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
|
|
|
2024-09-10 02:36:18 +00:00
|
|
|
[[package]]
|
|
|
|
name = "wasm-bindgen"
|
|
|
|
version = "0.2.93"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "a82edfc16a6c469f5f44dc7b571814045d60404b55a0ee849f9bcfa2e63dd9b5"
|
|
|
|
dependencies = [
|
|
|
|
"cfg-if",
|
|
|
|
"once_cell",
|
|
|
|
"wasm-bindgen-macro",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "wasm-bindgen-backend"
|
|
|
|
version = "0.2.93"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "9de396da306523044d3302746f1208fa71d7532227f15e347e2d93e4145dd77b"
|
|
|
|
dependencies = [
|
|
|
|
"bumpalo",
|
|
|
|
"log",
|
|
|
|
"once_cell",
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
2024-09-29 18:20:28 +00:00
|
|
|
"syn 2.0.79",
|
2024-09-10 02:36:18 +00:00
|
|
|
"wasm-bindgen-shared",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "wasm-bindgen-macro"
|
|
|
|
version = "0.2.93"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "585c4c91a46b072c92e908d99cb1dcdf95c5218eeb6f3bf1efa991ee7a68cccf"
|
|
|
|
dependencies = [
|
|
|
|
"quote",
|
|
|
|
"wasm-bindgen-macro-support",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "wasm-bindgen-macro-support"
|
|
|
|
version = "0.2.93"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "afc340c74d9005395cf9dd098506f7f44e38f2b4a21c6aaacf9a105ea5e1e836"
|
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
2024-09-29 18:20:28 +00:00
|
|
|
"syn 2.0.79",
|
2024-09-10 02:36:18 +00:00
|
|
|
"wasm-bindgen-backend",
|
|
|
|
"wasm-bindgen-shared",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "wasm-bindgen-shared"
|
|
|
|
version = "0.2.93"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "c62a0a307cb4a311d3a07867860911ca130c3494e8c2719593806c08bc5d0484"
|
|
|
|
|
2022-11-27 06:37:29 +00:00
|
|
|
[[package]]
|
|
|
|
name = "winapi"
|
|
|
|
version = "0.3.9"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
|
|
dependencies = [
|
|
|
|
"winapi-i686-pc-windows-gnu",
|
|
|
|
"winapi-x86_64-pc-windows-gnu",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "winapi-i686-pc-windows-gnu"
|
|
|
|
version = "0.4.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
|
|
|
2023-11-18 18:56:58 +00:00
|
|
|
[[package]]
|
|
|
|
name = "winapi-util"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "0.1.9"
|
2023-11-18 18:56:58 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
|
2023-11-18 18:56:58 +00:00
|
|
|
dependencies = [
|
2024-09-10 02:36:18 +00:00
|
|
|
"windows-sys 0.59.0",
|
2023-11-18 18:56:58 +00:00
|
|
|
]
|
|
|
|
|
2022-11-27 06:37:29 +00:00
|
|
|
[[package]]
|
|
|
|
name = "winapi-x86_64-pc-windows-gnu"
|
|
|
|
version = "0.4.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
2022-11-28 04:43:46 +00:00
|
|
|
|
2023-10-10 16:32:05 +00:00
|
|
|
[[package]]
|
|
|
|
name = "windows-sys"
|
|
|
|
version = "0.42.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
|
|
|
|
dependencies = [
|
|
|
|
"windows_aarch64_gnullvm 0.42.2",
|
|
|
|
"windows_aarch64_msvc 0.42.2",
|
|
|
|
"windows_i686_gnu 0.42.2",
|
|
|
|
"windows_i686_msvc 0.42.2",
|
|
|
|
"windows_x86_64_gnu 0.42.2",
|
|
|
|
"windows_x86_64_gnullvm 0.42.2",
|
|
|
|
"windows_x86_64_msvc 0.42.2",
|
|
|
|
]
|
|
|
|
|
2024-02-29 05:27:38 +00:00
|
|
|
[[package]]
|
|
|
|
name = "windows-sys"
|
|
|
|
version = "0.52.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
|
|
dependencies = [
|
2024-09-10 02:36:18 +00:00
|
|
|
"windows-targets",
|
2024-06-04 02:31:06 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
2024-09-10 02:36:18 +00:00
|
|
|
name = "windows-sys"
|
|
|
|
version = "0.59.0"
|
2024-06-04 02:31:06 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
2024-06-04 02:31:06 +00:00
|
|
|
dependencies = [
|
2024-09-10 02:36:18 +00:00
|
|
|
"windows-targets",
|
2022-11-28 04:43:46 +00:00
|
|
|
]
|
|
|
|
|
2024-02-29 05:27:38 +00:00
|
|
|
[[package]]
|
|
|
|
name = "windows-targets"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "0.52.6"
|
2024-02-29 05:27:38 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
2024-02-29 05:27:38 +00:00
|
|
|
dependencies = [
|
2024-09-10 02:36:18 +00:00
|
|
|
"windows_aarch64_gnullvm 0.52.6",
|
|
|
|
"windows_aarch64_msvc 0.52.6",
|
|
|
|
"windows_i686_gnu 0.52.6",
|
|
|
|
"windows_i686_gnullvm",
|
|
|
|
"windows_i686_msvc 0.52.6",
|
|
|
|
"windows_x86_64_gnu 0.52.6",
|
|
|
|
"windows_x86_64_gnullvm 0.52.6",
|
|
|
|
"windows_x86_64_msvc 0.52.6",
|
2024-02-29 05:27:38 +00:00
|
|
|
]
|
|
|
|
|
2023-10-10 16:32:05 +00:00
|
|
|
[[package]]
|
|
|
|
name = "windows_aarch64_gnullvm"
|
|
|
|
version = "0.42.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
|
|
|
|
|
2024-06-04 02:31:06 +00:00
|
|
|
[[package]]
|
|
|
|
name = "windows_aarch64_gnullvm"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "0.52.6"
|
2024-06-04 02:31:06 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
2024-02-29 05:27:38 +00:00
|
|
|
|
2023-10-10 16:32:05 +00:00
|
|
|
[[package]]
|
|
|
|
name = "windows_aarch64_msvc"
|
|
|
|
version = "0.42.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
|
|
|
|
|
2024-06-04 02:31:06 +00:00
|
|
|
[[package]]
|
|
|
|
name = "windows_aarch64_msvc"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "0.52.6"
|
2024-02-29 05:27:38 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
2024-02-29 05:27:38 +00:00
|
|
|
|
2023-10-10 16:32:05 +00:00
|
|
|
[[package]]
|
|
|
|
name = "windows_i686_gnu"
|
|
|
|
version = "0.42.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
|
|
|
|
|
2024-06-04 02:31:06 +00:00
|
|
|
[[package]]
|
|
|
|
name = "windows_i686_gnu"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "0.52.6"
|
2024-06-04 02:31:06 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
2024-06-04 02:31:06 +00:00
|
|
|
|
2024-02-29 05:27:38 +00:00
|
|
|
[[package]]
|
2024-09-10 02:36:18 +00:00
|
|
|
name = "windows_i686_gnullvm"
|
|
|
|
version = "0.52.6"
|
2024-02-29 05:27:38 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
2024-02-29 05:27:38 +00:00
|
|
|
|
2023-10-10 16:32:05 +00:00
|
|
|
[[package]]
|
|
|
|
name = "windows_i686_msvc"
|
|
|
|
version = "0.42.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
|
|
|
|
|
2024-06-04 02:31:06 +00:00
|
|
|
[[package]]
|
|
|
|
name = "windows_i686_msvc"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "0.52.6"
|
2024-02-29 05:27:38 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
2024-02-29 05:27:38 +00:00
|
|
|
|
2023-10-10 16:32:05 +00:00
|
|
|
[[package]]
|
|
|
|
name = "windows_x86_64_gnu"
|
|
|
|
version = "0.42.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
|
|
|
|
|
2024-06-04 02:31:06 +00:00
|
|
|
[[package]]
|
|
|
|
name = "windows_x86_64_gnu"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "0.52.6"
|
2024-02-29 05:27:38 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
2024-02-29 05:27:38 +00:00
|
|
|
|
2023-10-10 16:32:05 +00:00
|
|
|
[[package]]
|
|
|
|
name = "windows_x86_64_gnullvm"
|
|
|
|
version = "0.42.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
|
|
|
|
|
2024-06-04 02:31:06 +00:00
|
|
|
[[package]]
|
|
|
|
name = "windows_x86_64_gnullvm"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "0.52.6"
|
2024-06-04 02:31:06 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
2024-02-29 05:27:38 +00:00
|
|
|
|
2023-10-10 16:32:05 +00:00
|
|
|
[[package]]
|
|
|
|
name = "windows_x86_64_msvc"
|
|
|
|
version = "0.42.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
|
|
|
|
|
2024-06-04 02:31:06 +00:00
|
|
|
[[package]]
|
|
|
|
name = "windows_x86_64_msvc"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "0.52.6"
|
2024-02-29 05:27:38 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
2024-02-29 05:27:38 +00:00
|
|
|
|
2023-11-18 20:03:24 +00:00
|
|
|
[[package]]
|
|
|
|
name = "winnow"
|
2024-09-29 18:20:28 +00:00
|
|
|
version = "0.6.20"
|
2023-11-18 20:03:24 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-29 18:20:28 +00:00
|
|
|
checksum = "36c1fec1a2bb5866f07c25f68c26e565c4c200aebb96d7e55710c19d3e8ac49b"
|
2023-11-18 20:03:24 +00:00
|
|
|
dependencies = [
|
|
|
|
"memchr",
|
|
|
|
]
|
|
|
|
|
2023-11-08 04:21:59 +00:00
|
|
|
[[package]]
|
|
|
|
name = "xxhash-rust"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "0.8.12"
|
2023-11-08 04:21:59 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "6a5cbf750400958819fb6178eaa83bee5cd9c29a26a40cc241df8c70fdd46984"
|
2023-11-18 18:56:58 +00:00
|
|
|
|
2023-11-18 20:03:24 +00:00
|
|
|
[[package]]
|
|
|
|
name = "zerocopy"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "0.7.35"
|
2023-11-18 20:03:24 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
|
2023-11-18 20:03:24 +00:00
|
|
|
dependencies = [
|
Load objects from disc image & `vfs` module
Revamps support for container paths and centralizes logic into a VFS (virtual file system) module.
The new VFS architecture supports disc images and any layer of nesting.
For example, the following command works:
`dtk dol info 'Interactive Multi-Game Demo Disc - July 2002 (USA).rvz:files/zz_StarFox051702_e3.tgc:files/default.dol'`
This opens a TGC file inside an RVZ disc image, then reads `default.dol` in the FST.
Another example:
`dtk rel info 'Legend of Zelda, The - The Wind Waker (USA).rvz:files/RELS.arc:mmem/f_pc_profile_lst.rel'`
This opens a RARC archive inside an RVZ disc image, loads the Yaz0-compressed REL and
decompresses it on the fly.
This all operates in memory with minimal overhead, with no need to extract temporary files.
Supported container formats:
- Disc images (ISO/GCM, WIA/RVZ, WBFS, CISO, NFS, GCZ, TGC)
- RARC/SZS and U8 (.arc)
Supported compression formats:
- Yaz0 (SZS)
- Yay0 (SZP)
- NLZSS (.lz)
Additionally, projects can utilize a new configuration key `object_base`:
```
object: orig/GZLE01/sys/main.dol
modules:
- object: orig/GZLE01/files/RELS.arc:rels/mmem/f_pc_profile_lst.rel
```
becomes
```
object_base: orig/GZLE01
object: sys/main.dol
modules:
- object: files/RELS.arc:mmem/f_pc_profile_lst.rel
```
When loading the objects, decomp-toolkit will automatically check the `object_base`
directory for any disc images. (They can be named anything, but must be in the folder
root) If one is found, all objects will be fetched from the disc image itself, rather
than having to extract the files manually.
While still a work in progress, two new `vfs` commands were added: `vfs ls` and `vfs cp`.
These commands are very barebones currently, but allow listing directory contents and
extracting files from decomp-toolkit's vfs representation:
```
❯ dtk vfs ls disc.rvz:
files
sys
❯ dtk vfs ls disc.rvz:sys
boot.bin
bi2.bin
apploader.bin
fst.bin
main.dol
❯ dtk vfs cp disc.rvz:sys/main.dol .
```
2024-10-04 03:50:35 +00:00
|
|
|
"zerocopy-derive 0.7.35",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "zerocopy"
|
|
|
|
version = "0.8.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "df7885ffcb82507a0f213c593e77c5f13d12cb96588d4e835ad7e9423ba034db"
|
|
|
|
dependencies = [
|
|
|
|
"zerocopy-derive 0.8.0",
|
2023-11-18 20:03:24 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "zerocopy-derive"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "0.7.35"
|
2023-11-18 20:03:24 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
|
2023-11-18 20:03:24 +00:00
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
2024-09-29 18:20:28 +00:00
|
|
|
"syn 2.0.79",
|
2023-11-18 20:03:24 +00:00
|
|
|
]
|
2024-05-01 06:12:20 +00:00
|
|
|
|
Load objects from disc image & `vfs` module
Revamps support for container paths and centralizes logic into a VFS (virtual file system) module.
The new VFS architecture supports disc images and any layer of nesting.
For example, the following command works:
`dtk dol info 'Interactive Multi-Game Demo Disc - July 2002 (USA).rvz:files/zz_StarFox051702_e3.tgc:files/default.dol'`
This opens a TGC file inside an RVZ disc image, then reads `default.dol` in the FST.
Another example:
`dtk rel info 'Legend of Zelda, The - The Wind Waker (USA).rvz:files/RELS.arc:mmem/f_pc_profile_lst.rel'`
This opens a RARC archive inside an RVZ disc image, loads the Yaz0-compressed REL and
decompresses it on the fly.
This all operates in memory with minimal overhead, with no need to extract temporary files.
Supported container formats:
- Disc images (ISO/GCM, WIA/RVZ, WBFS, CISO, NFS, GCZ, TGC)
- RARC/SZS and U8 (.arc)
Supported compression formats:
- Yaz0 (SZS)
- Yay0 (SZP)
- NLZSS (.lz)
Additionally, projects can utilize a new configuration key `object_base`:
```
object: orig/GZLE01/sys/main.dol
modules:
- object: orig/GZLE01/files/RELS.arc:rels/mmem/f_pc_profile_lst.rel
```
becomes
```
object_base: orig/GZLE01
object: sys/main.dol
modules:
- object: files/RELS.arc:mmem/f_pc_profile_lst.rel
```
When loading the objects, decomp-toolkit will automatically check the `object_base`
directory for any disc images. (They can be named anything, but must be in the folder
root) If one is found, all objects will be fetched from the disc image itself, rather
than having to extract the files manually.
While still a work in progress, two new `vfs` commands were added: `vfs ls` and `vfs cp`.
These commands are very barebones currently, but allow listing directory contents and
extracting files from decomp-toolkit's vfs representation:
```
❯ dtk vfs ls disc.rvz:
files
sys
❯ dtk vfs ls disc.rvz:sys
boot.bin
bi2.bin
apploader.bin
fst.bin
main.dol
❯ dtk vfs cp disc.rvz:sys/main.dol .
```
2024-10-04 03:50:35 +00:00
|
|
|
[[package]]
|
|
|
|
name = "zerocopy-derive"
|
|
|
|
version = "0.8.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "930ad75608219e8ffdb8962a5433cb2b30064c7ccb564d3b76c2963390b1e435"
|
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn 2.0.79",
|
|
|
|
]
|
|
|
|
|
2024-05-01 06:12:20 +00:00
|
|
|
[[package]]
|
|
|
|
name = "zstd"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "0.13.2"
|
2024-05-01 06:12:20 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "fcf2b778a664581e31e389454a7072dab1647606d44f7feea22cd5abb9c9f3f9"
|
2024-05-01 06:12:20 +00:00
|
|
|
dependencies = [
|
|
|
|
"zstd-safe",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "zstd-safe"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "7.2.1"
|
2024-05-01 06:12:20 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "54a3ab4db68cea366acc5c897c7b4d4d1b8994a9cd6e6f841f8964566a419059"
|
2024-05-01 06:12:20 +00:00
|
|
|
dependencies = [
|
|
|
|
"zstd-sys",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "zstd-sys"
|
2024-09-10 02:36:18 +00:00
|
|
|
version = "2.0.13+zstd.1.5.6"
|
2024-05-01 06:12:20 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-09-10 02:36:18 +00:00
|
|
|
checksum = "38ff0f21cfee8f97d94cef41359e0c89aa6113028ab0291aa8ca0038995a95aa"
|
2024-05-01 06:12:20 +00:00
|
|
|
dependencies = [
|
|
|
|
"cc",
|
|
|
|
"pkg-config",
|
|
|
|
]
|