playing with AI voice didnt test yet
This commit is contained in:
Generated
+427
-19
@@ -20,6 +20,7 @@ dependencies = [
|
||||
"rcgen",
|
||||
"reqwest 0.13.3",
|
||||
"rfd",
|
||||
"rodio",
|
||||
"scraper",
|
||||
"serde",
|
||||
"serde_json",
|
||||
@@ -87,6 +88,28 @@ dependencies = [
|
||||
"memchr",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "alsa"
|
||||
version = "0.9.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "ed7572b7ba83a31e20d1b48970ee402d2e3e0537dcfe0a3ff4d6eb7508617d43"
|
||||
dependencies = [
|
||||
"alsa-sys",
|
||||
"bitflags 2.11.0",
|
||||
"cfg-if",
|
||||
"libc",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "alsa-sys"
|
||||
version = "0.3.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "db8fee663d06c4e303404ef5f40488a53e062f89ba8bfed81f42325aafad1527"
|
||||
dependencies = [
|
||||
"libc",
|
||||
"pkg-config",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "android-activity"
|
||||
version = "0.6.1"
|
||||
@@ -96,12 +119,12 @@ dependencies = [
|
||||
"android-properties",
|
||||
"bitflags 2.11.0",
|
||||
"cc",
|
||||
"jni",
|
||||
"jni 0.22.4",
|
||||
"libc",
|
||||
"log",
|
||||
"ndk",
|
||||
"ndk 0.9.0",
|
||||
"ndk-context",
|
||||
"ndk-sys",
|
||||
"ndk-sys 0.6.0+11769913",
|
||||
"num_enum",
|
||||
"thiserror 2.0.18",
|
||||
]
|
||||
@@ -350,6 +373,24 @@ version = "0.22.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
||||
|
||||
[[package]]
|
||||
name = "bindgen"
|
||||
version = "0.72.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
|
||||
dependencies = [
|
||||
"bitflags 2.11.0",
|
||||
"cexpr",
|
||||
"clang-sys",
|
||||
"itertools",
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
"regex",
|
||||
"rustc-hash",
|
||||
"shlex",
|
||||
"syn",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "bit-vec"
|
||||
version = "0.9.1"
|
||||
@@ -439,6 +480,12 @@ dependencies = [
|
||||
"syn",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "byteorder"
|
||||
version = "1.5.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
||||
|
||||
[[package]]
|
||||
name = "byteorder-lite"
|
||||
version = "0.1.0"
|
||||
@@ -511,6 +558,21 @@ dependencies = [
|
||||
"shlex",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "cesu8"
|
||||
version = "1.1.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
|
||||
|
||||
[[package]]
|
||||
name = "cexpr"
|
||||
version = "0.6.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
||||
dependencies = [
|
||||
"nom 7.1.3",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "cff-parser"
|
||||
version = "0.1.0"
|
||||
@@ -570,6 +632,23 @@ dependencies = [
|
||||
"inout",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "clang-sys"
|
||||
version = "1.8.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
|
||||
dependencies = [
|
||||
"glob",
|
||||
"libc",
|
||||
"libloading",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "claxon"
|
||||
version = "0.4.3"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "4bfbf56724aa9eca8afa4fcfadeb479e722935bb2a0900c2d37e0cc477af0688"
|
||||
|
||||
[[package]]
|
||||
name = "clipboard-win"
|
||||
version = "5.4.1"
|
||||
@@ -666,6 +745,49 @@ dependencies = [
|
||||
"libc",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "coreaudio-rs"
|
||||
version = "0.11.3"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "321077172d79c662f64f5071a03120748d5bb652f5231570141be24cfcd2bace"
|
||||
dependencies = [
|
||||
"bitflags 1.3.2",
|
||||
"core-foundation-sys",
|
||||
"coreaudio-sys",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "coreaudio-sys"
|
||||
version = "0.2.18"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "b9b4739a805a62757a83e5654fa3faabec0442666b263bb2287d5a8185bfd953"
|
||||
dependencies = [
|
||||
"bindgen",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "cpal"
|
||||
version = "0.15.3"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "873dab07c8f743075e57f524c583985fbaf745602acbe916a01539364369a779"
|
||||
dependencies = [
|
||||
"alsa",
|
||||
"core-foundation-sys",
|
||||
"coreaudio-rs",
|
||||
"dasp_sample",
|
||||
"jni 0.21.1",
|
||||
"js-sys",
|
||||
"libc",
|
||||
"mach2",
|
||||
"ndk 0.8.0",
|
||||
"ndk-context",
|
||||
"oboe",
|
||||
"wasm-bindgen",
|
||||
"wasm-bindgen-futures",
|
||||
"web-sys",
|
||||
"windows",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "cpufeatures"
|
||||
version = "0.2.17"
|
||||
@@ -763,6 +885,12 @@ version = "1.2.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "f27ae1dd37df86211c42e150270f82743308803d90a6f6e6651cd730d5e1732f"
|
||||
|
||||
[[package]]
|
||||
name = "dasp_sample"
|
||||
version = "0.11.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "0c87e182de0887fd5361989c677c4e8f5000cd9491d6d563161a8f3a5519fc7f"
|
||||
|
||||
[[package]]
|
||||
name = "data-encoding"
|
||||
version = "2.11.0"
|
||||
@@ -1449,6 +1577,12 @@ dependencies = [
|
||||
"xml-rs 0.8.28",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "glob"
|
||||
version = "0.3.3"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
||||
|
||||
[[package]]
|
||||
name = "glow"
|
||||
version = "0.17.0"
|
||||
@@ -1574,6 +1708,12 @@ version = "0.5.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
||||
|
||||
[[package]]
|
||||
name = "hound"
|
||||
version = "3.5.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "62adaabb884c94955b19907d60019f4e145d091c75345379e70d1ee696f7854f"
|
||||
|
||||
[[package]]
|
||||
name = "html5ever"
|
||||
version = "0.39.0"
|
||||
@@ -1726,7 +1866,7 @@ dependencies = [
|
||||
"js-sys",
|
||||
"log",
|
||||
"wasm-bindgen",
|
||||
"windows-core",
|
||||
"windows-core 0.62.2",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
@@ -1908,6 +2048,15 @@ dependencies = [
|
||||
"once_cell",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "itertools"
|
||||
version = "0.13.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
||||
dependencies = [
|
||||
"either",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "itoa"
|
||||
version = "1.0.18"
|
||||
@@ -1955,6 +2104,22 @@ dependencies = [
|
||||
"jiff-tzdb",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "jni"
|
||||
version = "0.21.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
|
||||
dependencies = [
|
||||
"cesu8",
|
||||
"cfg-if",
|
||||
"combine",
|
||||
"jni-sys 0.3.1",
|
||||
"log",
|
||||
"thiserror 1.0.69",
|
||||
"walkdir",
|
||||
"windows-sys 0.45.0",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "jni"
|
||||
version = "0.22.4"
|
||||
@@ -2065,6 +2230,17 @@ version = "0.1.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
||||
|
||||
[[package]]
|
||||
name = "lewton"
|
||||
version = "0.10.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "777b48df9aaab155475a83a7df3070395ea1ac6902f5cd062b8f2b028075c030"
|
||||
dependencies = [
|
||||
"byteorder",
|
||||
"ogg",
|
||||
"tinyvec",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "libc"
|
||||
version = "0.2.184"
|
||||
@@ -2204,6 +2380,15 @@ version = "0.1.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
|
||||
|
||||
[[package]]
|
||||
name = "mach2"
|
||||
version = "0.4.3"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "d640282b302c0bb0a2a8e0233ead9035e3bed871f0b7e81fe4a1ec829765db44"
|
||||
dependencies = [
|
||||
"libc",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "markup5ever"
|
||||
version = "0.39.0"
|
||||
@@ -2342,6 +2527,20 @@ dependencies = [
|
||||
"tempfile",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "ndk"
|
||||
version = "0.8.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "2076a31b7010b17a38c01907c45b945e8f11495ee4dd588309718901b1f7a5b7"
|
||||
dependencies = [
|
||||
"bitflags 2.11.0",
|
||||
"jni-sys 0.3.1",
|
||||
"log",
|
||||
"ndk-sys 0.5.0+25.2.9519653",
|
||||
"num_enum",
|
||||
"thiserror 1.0.69",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "ndk"
|
||||
version = "0.9.0"
|
||||
@@ -2351,7 +2550,7 @@ dependencies = [
|
||||
"bitflags 2.11.0",
|
||||
"jni-sys 0.3.1",
|
||||
"log",
|
||||
"ndk-sys",
|
||||
"ndk-sys 0.6.0+11769913",
|
||||
"num_enum",
|
||||
"raw-window-handle",
|
||||
"thiserror 1.0.69",
|
||||
@@ -2363,6 +2562,15 @@ version = "0.1.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b"
|
||||
|
||||
[[package]]
|
||||
name = "ndk-sys"
|
||||
version = "0.5.0+25.2.9519653"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "8c196769dd60fd4f363e11d948139556a344e79d451aeb2fa2fd040738ef7691"
|
||||
dependencies = [
|
||||
"jni-sys 0.3.1",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "ndk-sys"
|
||||
version = "0.6.0+11769913"
|
||||
@@ -2430,6 +2638,17 @@ version = "0.2.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "c6673768db2d862beb9b39a78fdcb1a69439615d5794a1be50caa9bc92c81967"
|
||||
|
||||
[[package]]
|
||||
name = "num-derive"
|
||||
version = "0.4.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
"syn",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "num-integer"
|
||||
version = "0.1.46"
|
||||
@@ -2755,6 +2974,38 @@ dependencies = [
|
||||
"objc2-foundation 0.2.2",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "oboe"
|
||||
version = "0.6.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "e8b61bebd49e5d43f5f8cc7ee2891c16e0f41ec7954d36bcb6c14c5e0de867fb"
|
||||
dependencies = [
|
||||
"jni 0.21.1",
|
||||
"ndk 0.8.0",
|
||||
"ndk-context",
|
||||
"num-derive",
|
||||
"num-traits",
|
||||
"oboe-sys",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "oboe-sys"
|
||||
version = "0.6.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "6c8bb09a4a2b1d668170cfe0a7d5bc103f8999fb316c98099b6a9939c9f2e79d"
|
||||
dependencies = [
|
||||
"cc",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "ogg"
|
||||
version = "0.8.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "6951b4e8bf21c8193da321bcce9c9dd2e13c858fe078bf9054a288b419ae5d6e"
|
||||
dependencies = [
|
||||
"byteorder",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "oid-registry"
|
||||
version = "0.8.1"
|
||||
@@ -3552,6 +3803,19 @@ dependencies = [
|
||||
"windows-sys 0.52.0",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "rodio"
|
||||
version = "0.20.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "e7ceb6607dd738c99bc8cb28eff249b7cd5c8ec88b9db96c0608c1480d140fb1"
|
||||
dependencies = [
|
||||
"claxon",
|
||||
"cpal",
|
||||
"hound",
|
||||
"lewton",
|
||||
"symphonia",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "rustc-hash"
|
||||
version = "2.1.2"
|
||||
@@ -3646,7 +3910,7 @@ checksum = "26d1e2536ce4f35f4846aa13bff16bd0ff40157cdb14cc056c7b14ba41233ba0"
|
||||
dependencies = [
|
||||
"core-foundation 0.10.1",
|
||||
"core-foundation-sys",
|
||||
"jni",
|
||||
"jni 0.22.4",
|
||||
"log",
|
||||
"once_cell",
|
||||
"rustls",
|
||||
@@ -4113,6 +4377,55 @@ version = "2.6.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
||||
|
||||
[[package]]
|
||||
name = "symphonia"
|
||||
version = "0.5.5"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "5773a4c030a19d9bfaa090f49746ff35c75dfddfa700df7a5939d5e076a57039"
|
||||
dependencies = [
|
||||
"lazy_static",
|
||||
"symphonia-bundle-mp3",
|
||||
"symphonia-core",
|
||||
"symphonia-metadata",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "symphonia-bundle-mp3"
|
||||
version = "0.5.5"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "4872dd6bb56bf5eac799e3e957aa1981086c3e613b27e0ac23b176054f7c57ed"
|
||||
dependencies = [
|
||||
"lazy_static",
|
||||
"log",
|
||||
"symphonia-core",
|
||||
"symphonia-metadata",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "symphonia-core"
|
||||
version = "0.5.5"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "ea00cc4f79b7f6bb7ff87eddc065a1066f3a43fe1875979056672c9ef948c2af"
|
||||
dependencies = [
|
||||
"arrayvec",
|
||||
"bitflags 1.3.2",
|
||||
"bytemuck",
|
||||
"lazy_static",
|
||||
"log",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "symphonia-metadata"
|
||||
version = "0.5.5"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "36306ff42b9ffe6e5afc99d49e121e0bd62fe79b9db7b9681d48e29fa19e6b16"
|
||||
dependencies = [
|
||||
"encoding_rs",
|
||||
"lazy_static",
|
||||
"log",
|
||||
"symphonia-core",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "syn"
|
||||
version = "2.0.117"
|
||||
@@ -4967,7 +5280,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "0fc95580916af1e68ff6a7be07446fc5db73ebf71cf092de939bbf5f7e189f72"
|
||||
dependencies = [
|
||||
"core-foundation 0.10.1",
|
||||
"jni",
|
||||
"jni 0.22.4",
|
||||
"log",
|
||||
"ndk-context",
|
||||
"objc2 0.6.4",
|
||||
@@ -5000,6 +5313,26 @@ dependencies = [
|
||||
"windows-sys 0.61.2",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "windows"
|
||||
version = "0.54.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "9252e5725dbed82865af151df558e754e4a3c2c30818359eb17465f1346a1b49"
|
||||
dependencies = [
|
||||
"windows-core 0.54.0",
|
||||
"windows-targets 0.52.6",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "windows-core"
|
||||
version = "0.54.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "12661b9c89351d684a50a8a643ce5f608e20243b9fb84687800163429f161d65"
|
||||
dependencies = [
|
||||
"windows-result 0.1.2",
|
||||
"windows-targets 0.52.6",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "windows-core"
|
||||
version = "0.62.2"
|
||||
@@ -5009,7 +5342,7 @@ dependencies = [
|
||||
"windows-implement",
|
||||
"windows-interface",
|
||||
"windows-link",
|
||||
"windows-result",
|
||||
"windows-result 0.4.1",
|
||||
"windows-strings",
|
||||
]
|
||||
|
||||
@@ -5048,10 +5381,19 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720"
|
||||
dependencies = [
|
||||
"windows-link",
|
||||
"windows-result",
|
||||
"windows-result 0.4.1",
|
||||
"windows-strings",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "windows-result"
|
||||
version = "0.1.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "5e383302e8ec8515204254685643de10811af0ed97ea37210dc26fb0032647f8"
|
||||
dependencies = [
|
||||
"windows-targets 0.52.6",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "windows-result"
|
||||
version = "0.4.1"
|
||||
@@ -5070,13 +5412,22 @@ dependencies = [
|
||||
"windows-link",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "windows-sys"
|
||||
version = "0.45.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
|
||||
dependencies = [
|
||||
"windows-targets 0.42.2",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "windows-sys"
|
||||
version = "0.52.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
||||
dependencies = [
|
||||
"windows-targets",
|
||||
"windows-targets 0.52.6",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
@@ -5085,7 +5436,7 @@ version = "0.59.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
||||
dependencies = [
|
||||
"windows-targets",
|
||||
"windows-targets 0.52.6",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
@@ -5097,34 +5448,67 @@ dependencies = [
|
||||
"windows-link",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "windows-targets"
|
||||
version = "0.42.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
|
||||
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",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "windows-targets"
|
||||
version = "0.52.6"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
||||
dependencies = [
|
||||
"windows_aarch64_gnullvm",
|
||||
"windows_aarch64_msvc",
|
||||
"windows_i686_gnu",
|
||||
"windows_aarch64_gnullvm 0.52.6",
|
||||
"windows_aarch64_msvc 0.52.6",
|
||||
"windows_i686_gnu 0.52.6",
|
||||
"windows_i686_gnullvm",
|
||||
"windows_i686_msvc",
|
||||
"windows_x86_64_gnu",
|
||||
"windows_x86_64_gnullvm",
|
||||
"windows_x86_64_msvc",
|
||||
"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",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "windows_aarch64_gnullvm"
|
||||
version = "0.42.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
|
||||
|
||||
[[package]]
|
||||
name = "windows_aarch64_gnullvm"
|
||||
version = "0.52.6"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
||||
|
||||
[[package]]
|
||||
name = "windows_aarch64_msvc"
|
||||
version = "0.42.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
|
||||
|
||||
[[package]]
|
||||
name = "windows_aarch64_msvc"
|
||||
version = "0.52.6"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
||||
|
||||
[[package]]
|
||||
name = "windows_i686_gnu"
|
||||
version = "0.42.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
|
||||
|
||||
[[package]]
|
||||
name = "windows_i686_gnu"
|
||||
version = "0.52.6"
|
||||
@@ -5137,24 +5521,48 @@ version = "0.52.6"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
||||
|
||||
[[package]]
|
||||
name = "windows_i686_msvc"
|
||||
version = "0.42.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
|
||||
|
||||
[[package]]
|
||||
name = "windows_i686_msvc"
|
||||
version = "0.52.6"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
||||
|
||||
[[package]]
|
||||
name = "windows_x86_64_gnu"
|
||||
version = "0.42.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
|
||||
|
||||
[[package]]
|
||||
name = "windows_x86_64_gnu"
|
||||
version = "0.52.6"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
||||
|
||||
[[package]]
|
||||
name = "windows_x86_64_gnullvm"
|
||||
version = "0.42.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
|
||||
|
||||
[[package]]
|
||||
name = "windows_x86_64_gnullvm"
|
||||
version = "0.52.6"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
||||
|
||||
[[package]]
|
||||
name = "windows_x86_64_msvc"
|
||||
version = "0.42.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
|
||||
|
||||
[[package]]
|
||||
name = "windows_x86_64_msvc"
|
||||
version = "0.52.6"
|
||||
@@ -5180,7 +5588,7 @@ dependencies = [
|
||||
"dpi",
|
||||
"js-sys",
|
||||
"libc",
|
||||
"ndk",
|
||||
"ndk 0.9.0",
|
||||
"objc2 0.5.2",
|
||||
"objc2-app-kit 0.2.2",
|
||||
"objc2-foundation 0.2.2",
|
||||
|
||||
@@ -31,3 +31,4 @@ time = "0.3"
|
||||
epub = "2.1"
|
||||
open = "5"
|
||||
eframe = { version = "0.34.2", default-features = false, features = ["default_fonts", "glow"] }
|
||||
rodio = "0.20"
|
||||
+15
@@ -12,6 +12,7 @@ mod executor;
|
||||
mod gui;
|
||||
mod knowledge_index;
|
||||
mod pdf_import;
|
||||
mod tts;
|
||||
mod web_server;
|
||||
|
||||
use crate::data_ls::loader::load_english;
|
||||
@@ -136,6 +137,7 @@ async fn build_state() -> Result<AppState> {
|
||||
target: Arc::new(Mutex::new(None)),
|
||||
shutdown: Arc::new(tokio::sync::Notify::new()),
|
||||
embed_cache: Arc::new(Mutex::new(EmbeddingCache::new())),
|
||||
tts: None,
|
||||
});
|
||||
}
|
||||
}
|
||||
@@ -153,6 +155,18 @@ async fn build_state() -> Result<AppState> {
|
||||
}
|
||||
});
|
||||
|
||||
// Start TTS engine
|
||||
let tts = match crate::tts::TtsEngine::start("voices", 8020).await {
|
||||
Ok(engine) => {
|
||||
println!("TTS engine ready");
|
||||
Some(Arc::new(engine))
|
||||
}
|
||||
Err(e) => {
|
||||
eprintln!("TTS engine unavailable: {}", e);
|
||||
None
|
||||
}
|
||||
};
|
||||
|
||||
Ok(AppState {
|
||||
ollama,
|
||||
knowledge,
|
||||
@@ -160,6 +174,7 @@ async fn build_state() -> Result<AppState> {
|
||||
target: Arc::new(Mutex::new(None)),
|
||||
shutdown: Arc::new(tokio::sync::Notify::new()),
|
||||
embed_cache: Arc::new(Mutex::new(EmbeddingCache::new())),
|
||||
tts,
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
+128
@@ -0,0 +1,128 @@
|
||||
use anyhow::{anyhow, Context, Result};
|
||||
use rodio::{Decoder, OutputStream, Sink};
|
||||
use std::io::Cursor;
|
||||
use std::process::{Child, Command};
|
||||
use std::sync::Arc;
|
||||
use tokio::sync::Mutex;
|
||||
|
||||
pub struct TtsEngine {
|
||||
process: Arc<Mutex<Option<Child>>>,
|
||||
pub server_url: String,
|
||||
client: reqwest::Client,
|
||||
voice_path: String,
|
||||
}
|
||||
|
||||
impl TtsEngine {
|
||||
pub async fn start(voice_dir: &str, port: u16) -> Result<Self> {
|
||||
let server_url = format!("http://127.0.0.1:{}", port);
|
||||
let client = reqwest::Client::new();
|
||||
|
||||
// Check if server is already running
|
||||
let already_running = client
|
||||
.get(&format!("{}/", server_url))
|
||||
.send()
|
||||
.await
|
||||
.is_ok();
|
||||
|
||||
let process = if !already_running {
|
||||
println!("Starting XTTS TTS server on port {}...", port);
|
||||
match Command::new("python")
|
||||
.args([
|
||||
"-m",
|
||||
"xtts_api_server",
|
||||
"--port",
|
||||
&port.to_string(),
|
||||
"--speaker-folder",
|
||||
voice_dir,
|
||||
])
|
||||
.spawn()
|
||||
{
|
||||
Ok(child) => {
|
||||
println!("XTTS server starting (model loading may take a minute)...");
|
||||
Some(child)
|
||||
}
|
||||
Err(e) => {
|
||||
eprintln!("Could not start XTTS server: {}. Voice will be unavailable.", e);
|
||||
eprintln!("Install with: pip install xtts-api-server");
|
||||
None
|
||||
}
|
||||
}
|
||||
} else {
|
||||
println!("XTTS server already running on {}", server_url);
|
||||
None
|
||||
};
|
||||
|
||||
Ok(Self {
|
||||
process: Arc::new(Mutex::new(process)),
|
||||
server_url,
|
||||
client,
|
||||
voice_path: voice_dir.to_string(),
|
||||
})
|
||||
}
|
||||
|
||||
pub async fn speak(&self, text: &str, speaker: &str) -> Result<()> {
|
||||
let speaker_path = format!("{}/{}.wav", self.voice_path, speaker);
|
||||
let response = self
|
||||
.client
|
||||
.post(format!("{}/tts", self.server_url))
|
||||
.json(&serde_json::json!({
|
||||
"text": text,
|
||||
"speaker_wav": speaker_path,
|
||||
"language": "en"
|
||||
}))
|
||||
.send()
|
||||
.await
|
||||
.context("Failed to reach XTTS server")?;
|
||||
|
||||
if !response.status().is_success() {
|
||||
let status = response.status();
|
||||
let body = response.text().await.unwrap_or_default();
|
||||
return Err(anyhow!("XTTS error {}: {}", status, body));
|
||||
}
|
||||
|
||||
let wav_bytes = response.bytes().await?;
|
||||
|
||||
// Play audio in a blocking thread (rodio requires sync)
|
||||
let bytes = wav_bytes.to_vec();
|
||||
std::thread::spawn(move || {
|
||||
if let Ok((_stream, stream_handle)) = OutputStream::try_default() {
|
||||
if let Ok(sink) = Sink::try_new(&stream_handle) {
|
||||
if let Ok(source) = Decoder::new(Cursor::new(bytes)) {
|
||||
sink.append(source);
|
||||
sink.sleep_until_end();
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
||||
pub async fn stop(&self) {
|
||||
if let Ok(mut guard) = self.process.lock().await {
|
||||
if let Some(ref mut child) = *guard {
|
||||
let _ = child.kill();
|
||||
let _ = child.wait();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
pub async fn is_available(&self) -> bool {
|
||||
self.client
|
||||
.get(&format!("{}/", self.server_url))
|
||||
.send()
|
||||
.await
|
||||
.is_ok()
|
||||
}
|
||||
}
|
||||
|
||||
impl Drop for TtsEngine {
|
||||
fn drop(&mut self) {
|
||||
if let Ok(mut guard) = self.process.lock() {
|
||||
if let Some(ref mut child) = *guard {
|
||||
let _ = child.kill();
|
||||
let _ = child.wait();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -26,6 +26,7 @@ use crate::executor::{detect_language, execute_command, execute_script, Executio
|
||||
use crate::knowledge_index::{
|
||||
format_knowledge, EmbeddingCache, KnowledgeIndex, SearchProfile, OLLAMA_SEM,
|
||||
};
|
||||
use crate::tts::TtsEngine;
|
||||
use crate::training::websearch::{
|
||||
append_sample_to_jsonl, compute_sample_embedding, web_search, SearchEngine,
|
||||
};
|
||||
@@ -64,6 +65,7 @@ pub struct AppState {
|
||||
pub target: Arc<Mutex<Option<String>>>,
|
||||
pub shutdown: Arc<tokio::sync::Notify>,
|
||||
pub embed_cache: Arc<Mutex<EmbeddingCache>>,
|
||||
pub tts: Option<Arc<TtsEngine>>,
|
||||
}
|
||||
|
||||
impl AppState {
|
||||
@@ -164,6 +166,8 @@ pub async fn start_server(addr: &str, state: AppState, open_browser: bool) -> an
|
||||
.route("/api/target/set", post(handle_target_set))
|
||||
.route("/api/target/clear", post(handle_target_clear))
|
||||
.route("/api/chat/clear", post(handle_chat_clear))
|
||||
.route("/api/tts/speak", post(handle_tts_speak))
|
||||
.route("/api/tts/status", get(handle_tts_status))
|
||||
.route("/api/shutdown", post(handle_shutdown))
|
||||
.layer(cors)
|
||||
.with_state(state.clone());
|
||||
|
||||
@@ -1 +1 @@
|
||||
{"rustc_fingerprint":2822674519504102369,"outputs":{"4774525245087777997":{"success":true,"status":"","code":0,"stdout":"rustc 1.96.0 (ac68faa20 2026-05-25)\nbinary: rustc\ncommit-hash: ac68faa20c58cbccd01ee7208bf3b6e93a7d7f96\ncommit-date: 2026-05-25\nhost: x86_64-pc-windows-msvc\nrelease: 1.96.0\nLLVM version: 22.1.2\n","stderr":""},"7971740275564407648":{"success":true,"status":"","code":0,"stdout":"___.exe\nlib___.rlib\n___.dll\n___.dll\n___.lib\n___.dll\nC:\\Users\\USER-PC\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\npacked\n___\ndebug_assertions\npanic=\"unwind\"\nproc_macro\ntarget_abi=\"\"\ntarget_arch=\"x86_64\"\ntarget_endian=\"little\"\ntarget_env=\"msvc\"\ntarget_family=\"windows\"\ntarget_feature=\"cmpxchg16b\"\ntarget_feature=\"fxsr\"\ntarget_feature=\"sse\"\ntarget_feature=\"sse2\"\ntarget_feature=\"sse3\"\ntarget_has_atomic=\"128\"\ntarget_has_atomic=\"16\"\ntarget_has_atomic=\"32\"\ntarget_has_atomic=\"64\"\ntarget_has_atomic=\"8\"\ntarget_has_atomic=\"ptr\"\ntarget_os=\"windows\"\ntarget_pointer_width=\"64\"\ntarget_vendor=\"pc\"\nwindows\n","stderr":""}},"successes":{}}
|
||||
{"rustc_fingerprint":8393308305887522202,"outputs":{"7971740275564407648":{"success":true,"status":"","code":0,"stdout":"___.exe\nlib___.rlib\n___.dll\n___.dll\n___.lib\n___.dll\nC:\\Users\\USER-PC\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\npacked\n___\ndebug_assertions\npanic=\"unwind\"\nproc_macro\ntarget_abi=\"\"\ntarget_arch=\"x86_64\"\ntarget_endian=\"little\"\ntarget_env=\"msvc\"\ntarget_family=\"windows\"\ntarget_feature=\"cmpxchg16b\"\ntarget_feature=\"fxsr\"\ntarget_feature=\"sse\"\ntarget_feature=\"sse2\"\ntarget_feature=\"sse3\"\ntarget_has_atomic=\"128\"\ntarget_has_atomic=\"16\"\ntarget_has_atomic=\"32\"\ntarget_has_atomic=\"64\"\ntarget_has_atomic=\"8\"\ntarget_has_atomic=\"ptr\"\ntarget_os=\"windows\"\ntarget_pointer_width=\"64\"\ntarget_vendor=\"pc\"\nwindows\n","stderr":""},"12004014463585500860":{"success":true,"status":"","code":0,"stdout":"___.exe\nlib___.rlib\n___.dll\n___.dll\n___.lib\n___.dll\nC:\\Users\\USER-PC\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\npacked\n___\ndebug_assertions\npanic=\"unwind\"\nproc_macro\ntarget_abi=\"\"\ntarget_arch=\"x86_64\"\ntarget_endian=\"little\"\ntarget_env=\"msvc\"\ntarget_family=\"windows\"\ntarget_feature=\"cmpxchg16b\"\ntarget_feature=\"fxsr\"\ntarget_feature=\"sse\"\ntarget_feature=\"sse2\"\ntarget_feature=\"sse3\"\ntarget_has_atomic=\"128\"\ntarget_has_atomic=\"16\"\ntarget_has_atomic=\"32\"\ntarget_has_atomic=\"64\"\ntarget_has_atomic=\"8\"\ntarget_has_atomic=\"ptr\"\ntarget_os=\"windows\"\ntarget_pointer_width=\"64\"\ntarget_vendor=\"pc\"\nwindows\n","stderr":""},"4774525245087777997":{"success":true,"status":"","code":0,"stdout":"rustc 1.96.0 (ac68faa20 2026-05-25)\nbinary: rustc\ncommit-hash: ac68faa20c58cbccd01ee7208bf3b6e93a7d7f96\ncommit-date: 2026-05-25\nhost: x86_64-pc-windows-msvc\nrelease: 1.96.0\nLLVM version: 22.1.2\n","stderr":""}},"successes":{}}
|
||||
+971
-1
@@ -1 +1,971 @@
|
||||
Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.29s
|
||||
0.262206200s INFO prepare_target{force=false package_id=AiRust v0.1.0 (C:\RustProjects\AiRust) target="AiRust-cli"}: cargo::core::compiler::fingerprint: fingerprint error for AiRust v0.1.0 (C:\RustProjects\AiRust)/Check { test: false }/TargetInner { name: "AiRust-cli", doc: true, ..: with_path("C:\\RustProjects\\AiRust\\src\\main.rs", Edition2021) }
|
||||
0.262248900s INFO prepare_target{force=false package_id=AiRust v0.1.0 (C:\RustProjects\AiRust) target="AiRust-cli"}: cargo::core::compiler::fingerprint: err: failed to read `C:\RustProjects\AiRust\target\debug\.fingerprint\AiRust-f57e2bf83e6ee1b1\bin-AiRust-cli`
|
||||
|
||||
Caused by:
|
||||
The system cannot find the file specified. (os error 2)
|
||||
|
||||
Stack backtrace:
|
||||
0: git_midx_writer_dump
|
||||
1: git_midx_writer_dump
|
||||
2: git_midx_writer_dump
|
||||
3: git_midx_writer_dump
|
||||
4: git_filter_source_repo
|
||||
5: git_filter_source_repo
|
||||
6: git_filter_source_repo
|
||||
7: git_filter_source_repo
|
||||
8: git_filter_source_repo
|
||||
9: git_filter_source_repo
|
||||
10: git_filter_source_repo
|
||||
11: git_libgit2_prerelease
|
||||
12: <unknown>
|
||||
13: <unknown>
|
||||
14: <unknown>
|
||||
15: <unknown>
|
||||
16: git_midx_writer_dump
|
||||
17: git_filter_source_repo
|
||||
18: git_midx_writer_dump
|
||||
19: BaseThreadInitThunk
|
||||
20: RtlUserThreadStart
|
||||
0.291912800s INFO prepare_target{force=false package_id=eframe v0.34.2 target="eframe"}: cargo::core::compiler::fingerprint: fingerprint error for eframe v0.34.2/Check { test: false }/TargetInner { ..: lib_target("eframe", ["lib"], "C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\eframe-0.34.2\\src\\lib.rs", Edition2024) }
|
||||
0.291943400s INFO prepare_target{force=false package_id=eframe v0.34.2 target="eframe"}: cargo::core::compiler::fingerprint: err: failed to read `C:\RustProjects\AiRust\target\debug\.fingerprint\eframe-ba8a096851bbd4ee\lib-eframe`
|
||||
|
||||
Caused by:
|
||||
The system cannot find the file specified. (os error 2)
|
||||
|
||||
Stack backtrace:
|
||||
0: git_midx_writer_dump
|
||||
1: git_midx_writer_dump
|
||||
2: git_midx_writer_dump
|
||||
3: git_midx_writer_dump
|
||||
4: git_filter_source_repo
|
||||
5: git_filter_source_repo
|
||||
6: git_filter_source_repo
|
||||
7: git_filter_source_repo
|
||||
8: git_filter_source_repo
|
||||
9: git_filter_source_repo
|
||||
10: git_filter_source_repo
|
||||
11: git_filter_source_repo
|
||||
12: git_libgit2_prerelease
|
||||
13: <unknown>
|
||||
14: <unknown>
|
||||
15: <unknown>
|
||||
16: <unknown>
|
||||
17: git_midx_writer_dump
|
||||
18: git_filter_source_repo
|
||||
19: git_midx_writer_dump
|
||||
20: BaseThreadInitThunk
|
||||
21: RtlUserThreadStart
|
||||
0.293140000s INFO prepare_target{force=false package_id=egui v0.34.2 target="egui"}: cargo::core::compiler::fingerprint: fingerprint error for egui v0.34.2/Check { test: false }/TargetInner { ..: lib_target("egui", ["lib"], "C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\egui-0.34.2\\src\\lib.rs", Edition2024) }
|
||||
0.293158500s INFO prepare_target{force=false package_id=egui v0.34.2 target="egui"}: cargo::core::compiler::fingerprint: err: failed to read `C:\RustProjects\AiRust\target\debug\.fingerprint\egui-b1f7337f4d21d61a\lib-egui`
|
||||
|
||||
Caused by:
|
||||
The system cannot find the file specified. (os error 2)
|
||||
|
||||
Stack backtrace:
|
||||
0: git_midx_writer_dump
|
||||
1: git_midx_writer_dump
|
||||
2: git_midx_writer_dump
|
||||
3: git_midx_writer_dump
|
||||
4: git_filter_source_repo
|
||||
5: git_filter_source_repo
|
||||
6: git_filter_source_repo
|
||||
7: git_filter_source_repo
|
||||
8: git_filter_source_repo
|
||||
9: git_filter_source_repo
|
||||
10: git_filter_source_repo
|
||||
11: git_filter_source_repo
|
||||
12: git_filter_source_repo
|
||||
13: git_libgit2_prerelease
|
||||
14: <unknown>
|
||||
15: <unknown>
|
||||
16: <unknown>
|
||||
17: <unknown>
|
||||
18: git_midx_writer_dump
|
||||
19: git_filter_source_repo
|
||||
20: git_midx_writer_dump
|
||||
21: BaseThreadInitThunk
|
||||
22: RtlUserThreadStart
|
||||
0.294099500s INFO prepare_target{force=false package_id=epaint v0.34.2 target="epaint"}: cargo::core::compiler::fingerprint: fingerprint error for epaint v0.34.2/Check { test: false }/TargetInner { ..: lib_target("epaint", ["lib"], "C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\epaint-0.34.2\\src\\lib.rs", Edition2024) }
|
||||
0.294119300s INFO prepare_target{force=false package_id=epaint v0.34.2 target="epaint"}: cargo::core::compiler::fingerprint: err: failed to read `C:\RustProjects\AiRust\target\debug\.fingerprint\epaint-777d7039dd05a84f\lib-epaint`
|
||||
|
||||
Caused by:
|
||||
The system cannot find the file specified. (os error 2)
|
||||
|
||||
Stack backtrace:
|
||||
0: git_midx_writer_dump
|
||||
1: git_midx_writer_dump
|
||||
2: git_midx_writer_dump
|
||||
3: git_midx_writer_dump
|
||||
4: git_filter_source_repo
|
||||
5: git_filter_source_repo
|
||||
6: git_filter_source_repo
|
||||
7: git_filter_source_repo
|
||||
8: git_filter_source_repo
|
||||
9: git_filter_source_repo
|
||||
10: git_filter_source_repo
|
||||
11: git_filter_source_repo
|
||||
12: git_filter_source_repo
|
||||
13: git_filter_source_repo
|
||||
14: git_libgit2_prerelease
|
||||
15: <unknown>
|
||||
16: <unknown>
|
||||
17: <unknown>
|
||||
18: <unknown>
|
||||
19: git_midx_writer_dump
|
||||
20: git_filter_source_repo
|
||||
21: git_midx_writer_dump
|
||||
22: BaseThreadInitThunk
|
||||
23: RtlUserThreadStart
|
||||
0.295145600s INFO prepare_target{force=false package_id=vello_cpu v0.0.6 target="vello_cpu"}: cargo::core::compiler::fingerprint: fingerprint error for vello_cpu v0.0.6/Check { test: false }/TargetInner { ..: lib_target("vello_cpu", ["lib"], "C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\vello_cpu-0.0.6\\src\\lib.rs", Edition2024) }
|
||||
0.295162100s INFO prepare_target{force=false package_id=vello_cpu v0.0.6 target="vello_cpu"}: cargo::core::compiler::fingerprint: err: failed to read `C:\RustProjects\AiRust\target\debug\.fingerprint\vello_cpu-4c6d374d5e03c9a6\lib-vello_cpu`
|
||||
|
||||
Caused by:
|
||||
The system cannot find the file specified. (os error 2)
|
||||
|
||||
Stack backtrace:
|
||||
0: git_midx_writer_dump
|
||||
1: git_midx_writer_dump
|
||||
2: git_midx_writer_dump
|
||||
3: git_midx_writer_dump
|
||||
4: git_filter_source_repo
|
||||
5: git_filter_source_repo
|
||||
6: git_filter_source_repo
|
||||
7: git_filter_source_repo
|
||||
8: git_filter_source_repo
|
||||
9: git_filter_source_repo
|
||||
10: git_filter_source_repo
|
||||
11: git_filter_source_repo
|
||||
12: git_filter_source_repo
|
||||
13: git_filter_source_repo
|
||||
14: git_filter_source_repo
|
||||
15: git_libgit2_prerelease
|
||||
16: <unknown>
|
||||
17: <unknown>
|
||||
18: <unknown>
|
||||
19: <unknown>
|
||||
20: git_midx_writer_dump
|
||||
21: git_filter_source_repo
|
||||
22: git_midx_writer_dump
|
||||
23: BaseThreadInitThunk
|
||||
24: RtlUserThreadStart
|
||||
0.295374700s INFO prepare_target{force=false package_id=vello_common v0.0.6 target="vello_common"}: cargo::core::compiler::fingerprint: fingerprint error for vello_common v0.0.6/Check { test: false }/TargetInner { ..: lib_target("vello_common", ["lib"], "C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\vello_common-0.0.6\\src\\lib.rs", Edition2024) }
|
||||
0.295385300s INFO prepare_target{force=false package_id=vello_common v0.0.6 target="vello_common"}: cargo::core::compiler::fingerprint: err: failed to read `C:\RustProjects\AiRust\target\debug\.fingerprint\vello_common-5a4d5c54d77365fd\lib-vello_common`
|
||||
|
||||
Caused by:
|
||||
The system cannot find the file specified. (os error 2)
|
||||
|
||||
Stack backtrace:
|
||||
0: git_midx_writer_dump
|
||||
1: git_midx_writer_dump
|
||||
2: git_midx_writer_dump
|
||||
3: git_midx_writer_dump
|
||||
4: git_filter_source_repo
|
||||
5: git_filter_source_repo
|
||||
6: git_filter_source_repo
|
||||
7: git_filter_source_repo
|
||||
8: git_filter_source_repo
|
||||
9: git_filter_source_repo
|
||||
10: git_filter_source_repo
|
||||
11: git_filter_source_repo
|
||||
12: git_filter_source_repo
|
||||
13: git_filter_source_repo
|
||||
14: git_filter_source_repo
|
||||
15: git_filter_source_repo
|
||||
16: git_libgit2_prerelease
|
||||
17: <unknown>
|
||||
18: <unknown>
|
||||
19: <unknown>
|
||||
20: <unknown>
|
||||
21: git_midx_writer_dump
|
||||
22: git_filter_source_repo
|
||||
23: git_midx_writer_dump
|
||||
24: BaseThreadInitThunk
|
||||
25: RtlUserThreadStart
|
||||
0.295643800s INFO prepare_target{force=false package_id=peniko v0.6.1 target="peniko"}: cargo::core::compiler::fingerprint: fingerprint error for peniko v0.6.1/Check { test: false }/TargetInner { ..: lib_target("peniko", ["lib"], "C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\peniko-0.6.1\\src\\lib.rs", Edition2024) }
|
||||
0.295653000s INFO prepare_target{force=false package_id=peniko v0.6.1 target="peniko"}: cargo::core::compiler::fingerprint: err: failed to read `C:\RustProjects\AiRust\target\debug\.fingerprint\peniko-f1a4d2a4bbd7d974\lib-peniko`
|
||||
|
||||
Caused by:
|
||||
The system cannot find the file specified. (os error 2)
|
||||
|
||||
Stack backtrace:
|
||||
0: git_midx_writer_dump
|
||||
1: git_midx_writer_dump
|
||||
2: git_midx_writer_dump
|
||||
3: git_midx_writer_dump
|
||||
4: git_filter_source_repo
|
||||
5: git_filter_source_repo
|
||||
6: git_filter_source_repo
|
||||
7: git_filter_source_repo
|
||||
8: git_filter_source_repo
|
||||
9: git_filter_source_repo
|
||||
10: git_filter_source_repo
|
||||
11: git_filter_source_repo
|
||||
12: git_filter_source_repo
|
||||
13: git_filter_source_repo
|
||||
14: git_filter_source_repo
|
||||
15: git_filter_source_repo
|
||||
16: git_filter_source_repo
|
||||
17: git_libgit2_prerelease
|
||||
18: <unknown>
|
||||
19: <unknown>
|
||||
20: <unknown>
|
||||
21: <unknown>
|
||||
22: git_midx_writer_dump
|
||||
23: git_filter_source_repo
|
||||
24: git_midx_writer_dump
|
||||
25: BaseThreadInitThunk
|
||||
26: RtlUserThreadStart
|
||||
0.295951500s INFO prepare_target{force=false package_id=kurbo v0.13.1 target="kurbo"}: cargo::core::compiler::fingerprint: fingerprint error for kurbo v0.13.1/Check { test: false }/TargetInner { ..: lib_target("kurbo", ["lib"], "C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\kurbo-0.13.1\\src\\lib.rs", Edition2024) }
|
||||
0.295960100s INFO prepare_target{force=false package_id=kurbo v0.13.1 target="kurbo"}: cargo::core::compiler::fingerprint: err: failed to read `C:\RustProjects\AiRust\target\debug\.fingerprint\kurbo-a9038610e191cc7a\lib-kurbo`
|
||||
|
||||
Caused by:
|
||||
The system cannot find the file specified. (os error 2)
|
||||
|
||||
Stack backtrace:
|
||||
0: git_midx_writer_dump
|
||||
1: git_midx_writer_dump
|
||||
2: git_midx_writer_dump
|
||||
3: git_midx_writer_dump
|
||||
4: git_filter_source_repo
|
||||
5: git_filter_source_repo
|
||||
6: git_filter_source_repo
|
||||
7: git_filter_source_repo
|
||||
8: git_filter_source_repo
|
||||
9: git_filter_source_repo
|
||||
10: git_filter_source_repo
|
||||
11: git_filter_source_repo
|
||||
12: git_filter_source_repo
|
||||
13: git_filter_source_repo
|
||||
14: git_filter_source_repo
|
||||
15: git_filter_source_repo
|
||||
16: git_filter_source_repo
|
||||
17: git_filter_source_repo
|
||||
18: git_libgit2_prerelease
|
||||
19: <unknown>
|
||||
20: <unknown>
|
||||
21: <unknown>
|
||||
22: <unknown>
|
||||
23: git_midx_writer_dump
|
||||
24: git_filter_source_repo
|
||||
25: git_midx_writer_dump
|
||||
26: BaseThreadInitThunk
|
||||
27: RtlUserThreadStart
|
||||
0.296148800s INFO prepare_target{force=false package_id=arrayvec v0.7.6 target="arrayvec"}: cargo::core::compiler::fingerprint: fingerprint error for arrayvec v0.7.6/Check { test: false }/TargetInner { ..: lib_target("arrayvec", ["lib"], "C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\arrayvec-0.7.6\\src\\lib.rs", Edition2018) }
|
||||
0.296159700s INFO prepare_target{force=false package_id=arrayvec v0.7.6 target="arrayvec"}: cargo::core::compiler::fingerprint: err: failed to read `C:\RustProjects\AiRust\target\debug\.fingerprint\arrayvec-5067b87bf9838760\lib-arrayvec`
|
||||
|
||||
Caused by:
|
||||
The system cannot find the file specified. (os error 2)
|
||||
|
||||
Stack backtrace:
|
||||
0: git_midx_writer_dump
|
||||
1: git_midx_writer_dump
|
||||
2: git_midx_writer_dump
|
||||
3: git_midx_writer_dump
|
||||
4: git_filter_source_repo
|
||||
5: git_filter_source_repo
|
||||
6: git_filter_source_repo
|
||||
7: git_filter_source_repo
|
||||
8: git_filter_source_repo
|
||||
9: git_filter_source_repo
|
||||
10: git_filter_source_repo
|
||||
11: git_filter_source_repo
|
||||
12: git_filter_source_repo
|
||||
13: git_filter_source_repo
|
||||
14: git_filter_source_repo
|
||||
15: git_filter_source_repo
|
||||
16: git_filter_source_repo
|
||||
17: git_filter_source_repo
|
||||
18: git_filter_source_repo
|
||||
19: git_libgit2_prerelease
|
||||
20: <unknown>
|
||||
21: <unknown>
|
||||
22: <unknown>
|
||||
23: <unknown>
|
||||
24: git_midx_writer_dump
|
||||
25: git_filter_source_repo
|
||||
26: git_midx_writer_dump
|
||||
27: BaseThreadInitThunk
|
||||
28: RtlUserThreadStart
|
||||
0.296373700s INFO prepare_target{force=false package_id=polycool v0.4.0 target="polycool"}: cargo::core::compiler::fingerprint: fingerprint error for polycool v0.4.0/Check { test: false }/TargetInner { ..: lib_target("polycool", ["lib"], "C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\polycool-0.4.0\\src\\lib.rs", Edition2024) }
|
||||
0.296383300s INFO prepare_target{force=false package_id=polycool v0.4.0 target="polycool"}: cargo::core::compiler::fingerprint: err: failed to read `C:\RustProjects\AiRust\target\debug\.fingerprint\polycool-075490056b854418\lib-polycool`
|
||||
|
||||
Caused by:
|
||||
The system cannot find the file specified. (os error 2)
|
||||
|
||||
Stack backtrace:
|
||||
0: git_midx_writer_dump
|
||||
1: git_midx_writer_dump
|
||||
2: git_midx_writer_dump
|
||||
3: git_midx_writer_dump
|
||||
4: git_filter_source_repo
|
||||
5: git_filter_source_repo
|
||||
6: git_filter_source_repo
|
||||
7: git_filter_source_repo
|
||||
8: git_filter_source_repo
|
||||
9: git_filter_source_repo
|
||||
10: git_filter_source_repo
|
||||
11: git_filter_source_repo
|
||||
12: git_filter_source_repo
|
||||
13: git_filter_source_repo
|
||||
14: git_filter_source_repo
|
||||
15: git_filter_source_repo
|
||||
16: git_filter_source_repo
|
||||
17: git_filter_source_repo
|
||||
18: git_filter_source_repo
|
||||
19: git_libgit2_prerelease
|
||||
20: <unknown>
|
||||
21: <unknown>
|
||||
22: <unknown>
|
||||
23: <unknown>
|
||||
24: git_midx_writer_dump
|
||||
25: git_filter_source_repo
|
||||
26: git_midx_writer_dump
|
||||
27: BaseThreadInitThunk
|
||||
28: RtlUserThreadStart
|
||||
0.296688900s INFO prepare_target{force=false package_id=egui-winit v0.34.2 target="egui_winit"}: cargo::core::compiler::fingerprint: fingerprint error for egui-winit v0.34.2/Check { test: false }/TargetInner { ..: lib_target("egui_winit", ["lib"], "C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\egui-winit-0.34.2\\src\\lib.rs", Edition2024) }
|
||||
0.296696900s INFO prepare_target{force=false package_id=egui-winit v0.34.2 target="egui_winit"}: cargo::core::compiler::fingerprint: err: failed to read `C:\RustProjects\AiRust\target\debug\.fingerprint\egui-winit-4412b9cae0f9b3e0\lib-egui_winit`
|
||||
|
||||
Caused by:
|
||||
The system cannot find the file specified. (os error 2)
|
||||
|
||||
Stack backtrace:
|
||||
0: git_midx_writer_dump
|
||||
1: git_midx_writer_dump
|
||||
2: git_midx_writer_dump
|
||||
3: git_midx_writer_dump
|
||||
4: git_filter_source_repo
|
||||
5: git_filter_source_repo
|
||||
6: git_filter_source_repo
|
||||
7: git_filter_source_repo
|
||||
8: git_filter_source_repo
|
||||
9: git_filter_source_repo
|
||||
10: git_filter_source_repo
|
||||
11: git_filter_source_repo
|
||||
12: git_filter_source_repo
|
||||
13: git_libgit2_prerelease
|
||||
14: <unknown>
|
||||
15: <unknown>
|
||||
16: <unknown>
|
||||
17: <unknown>
|
||||
18: git_midx_writer_dump
|
||||
19: git_filter_source_repo
|
||||
20: git_midx_writer_dump
|
||||
21: BaseThreadInitThunk
|
||||
22: RtlUserThreadStart
|
||||
0.304499600s INFO prepare_target{force=false package_id=egui_glow v0.34.2 target="egui_glow"}: cargo::core::compiler::fingerprint: fingerprint error for egui_glow v0.34.2/Check { test: false }/TargetInner { ..: lib_target("egui_glow", ["lib"], "C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\egui_glow-0.34.2\\src\\lib.rs", Edition2024) }
|
||||
0.304520400s INFO prepare_target{force=false package_id=egui_glow v0.34.2 target="egui_glow"}: cargo::core::compiler::fingerprint: err: failed to read `C:\RustProjects\AiRust\target\debug\.fingerprint\egui_glow-7026d07527fadeac\lib-egui_glow`
|
||||
|
||||
Caused by:
|
||||
The system cannot find the file specified. (os error 2)
|
||||
|
||||
Stack backtrace:
|
||||
0: git_midx_writer_dump
|
||||
1: git_midx_writer_dump
|
||||
2: git_midx_writer_dump
|
||||
3: git_midx_writer_dump
|
||||
4: git_filter_source_repo
|
||||
5: git_filter_source_repo
|
||||
6: git_filter_source_repo
|
||||
7: git_filter_source_repo
|
||||
8: git_filter_source_repo
|
||||
9: git_filter_source_repo
|
||||
10: git_filter_source_repo
|
||||
11: git_filter_source_repo
|
||||
12: git_filter_source_repo
|
||||
13: git_libgit2_prerelease
|
||||
14: <unknown>
|
||||
15: <unknown>
|
||||
16: <unknown>
|
||||
17: <unknown>
|
||||
18: git_midx_writer_dump
|
||||
19: git_filter_source_repo
|
||||
20: git_midx_writer_dump
|
||||
21: BaseThreadInitThunk
|
||||
22: RtlUserThreadStart
|
||||
0.322232100s INFO prepare_target{force=false package_id=rodio v0.20.1 target="rodio"}: cargo::core::compiler::fingerprint: fingerprint error for rodio v0.20.1/Check { test: false }/TargetInner { ..: lib_target("rodio", ["lib"], "C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rodio-0.20.1\\src\\lib.rs", Edition2021) }
|
||||
0.322254600s INFO prepare_target{force=false package_id=rodio v0.20.1 target="rodio"}: cargo::core::compiler::fingerprint: err: failed to read `C:\RustProjects\AiRust\target\debug\.fingerprint\rodio-458aa5f5bd91d79f\lib-rodio`
|
||||
|
||||
Caused by:
|
||||
The system cannot find the file specified. (os error 2)
|
||||
|
||||
Stack backtrace:
|
||||
0: git_midx_writer_dump
|
||||
1: git_midx_writer_dump
|
||||
2: git_midx_writer_dump
|
||||
3: git_midx_writer_dump
|
||||
4: git_filter_source_repo
|
||||
5: git_filter_source_repo
|
||||
6: git_filter_source_repo
|
||||
7: git_filter_source_repo
|
||||
8: git_filter_source_repo
|
||||
9: git_filter_source_repo
|
||||
10: git_filter_source_repo
|
||||
11: git_filter_source_repo
|
||||
12: git_libgit2_prerelease
|
||||
13: <unknown>
|
||||
14: <unknown>
|
||||
15: <unknown>
|
||||
16: <unknown>
|
||||
17: git_midx_writer_dump
|
||||
18: git_filter_source_repo
|
||||
19: git_midx_writer_dump
|
||||
20: BaseThreadInitThunk
|
||||
21: RtlUserThreadStart
|
||||
0.322686400s INFO prepare_target{force=false package_id=claxon v0.4.3 target="claxon"}: cargo::core::compiler::fingerprint: fingerprint error for claxon v0.4.3/Check { test: false }/TargetInner { name_inferred: true, ..: lib_target("claxon", ["lib"], "C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\claxon-0.4.3\\src\\lib.rs", Edition2015) }
|
||||
0.322699800s INFO prepare_target{force=false package_id=claxon v0.4.3 target="claxon"}: cargo::core::compiler::fingerprint: err: failed to read `C:\RustProjects\AiRust\target\debug\.fingerprint\claxon-1f24983031850f09\lib-claxon`
|
||||
|
||||
Caused by:
|
||||
The system cannot find the file specified. (os error 2)
|
||||
|
||||
Stack backtrace:
|
||||
0: git_midx_writer_dump
|
||||
1: git_midx_writer_dump
|
||||
2: git_midx_writer_dump
|
||||
3: git_midx_writer_dump
|
||||
4: git_filter_source_repo
|
||||
5: git_filter_source_repo
|
||||
6: git_filter_source_repo
|
||||
7: git_filter_source_repo
|
||||
8: git_filter_source_repo
|
||||
9: git_filter_source_repo
|
||||
10: git_filter_source_repo
|
||||
11: git_filter_source_repo
|
||||
12: git_filter_source_repo
|
||||
13: git_libgit2_prerelease
|
||||
14: <unknown>
|
||||
15: <unknown>
|
||||
16: <unknown>
|
||||
17: <unknown>
|
||||
18: git_midx_writer_dump
|
||||
19: git_filter_source_repo
|
||||
20: git_midx_writer_dump
|
||||
21: BaseThreadInitThunk
|
||||
22: RtlUserThreadStart
|
||||
0.322930800s INFO prepare_target{force=false package_id=cpal v0.15.3 target="cpal"}: cargo::core::compiler::fingerprint: fingerprint error for cpal v0.15.3/Check { test: false }/TargetInner { name_inferred: true, ..: lib_target("cpal", ["lib"], "C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cpal-0.15.3\\src\\lib.rs", Edition2021) }
|
||||
0.322946900s INFO prepare_target{force=false package_id=cpal v0.15.3 target="cpal"}: cargo::core::compiler::fingerprint: err: failed to read `C:\RustProjects\AiRust\target\debug\.fingerprint\cpal-4b7be17be3cb2d01\lib-cpal`
|
||||
|
||||
Caused by:
|
||||
The system cannot find the file specified. (os error 2)
|
||||
|
||||
Stack backtrace:
|
||||
0: git_midx_writer_dump
|
||||
1: git_midx_writer_dump
|
||||
2: git_midx_writer_dump
|
||||
3: git_midx_writer_dump
|
||||
4: git_filter_source_repo
|
||||
5: git_filter_source_repo
|
||||
6: git_filter_source_repo
|
||||
7: git_filter_source_repo
|
||||
8: git_filter_source_repo
|
||||
9: git_filter_source_repo
|
||||
10: git_filter_source_repo
|
||||
11: git_filter_source_repo
|
||||
12: git_filter_source_repo
|
||||
13: git_libgit2_prerelease
|
||||
14: <unknown>
|
||||
15: <unknown>
|
||||
16: <unknown>
|
||||
17: <unknown>
|
||||
18: git_midx_writer_dump
|
||||
19: git_filter_source_repo
|
||||
20: git_midx_writer_dump
|
||||
21: BaseThreadInitThunk
|
||||
22: RtlUserThreadStart
|
||||
0.323710200s INFO prepare_target{force=false package_id=dasp_sample v0.11.0 target="dasp_sample"}: cargo::core::compiler::fingerprint: fingerprint error for dasp_sample v0.11.0/Check { test: false }/TargetInner { name_inferred: true, ..: lib_target("dasp_sample", ["lib"], "C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dasp_sample-0.11.0\\src\\lib.rs", Edition2018) }
|
||||
0.323722600s INFO prepare_target{force=false package_id=dasp_sample v0.11.0 target="dasp_sample"}: cargo::core::compiler::fingerprint: err: failed to read `C:\RustProjects\AiRust\target\debug\.fingerprint\dasp_sample-ddf292d7d72922ac\lib-dasp_sample`
|
||||
|
||||
Caused by:
|
||||
The system cannot find the file specified. (os error 2)
|
||||
|
||||
Stack backtrace:
|
||||
0: git_midx_writer_dump
|
||||
1: git_midx_writer_dump
|
||||
2: git_midx_writer_dump
|
||||
3: git_midx_writer_dump
|
||||
4: git_filter_source_repo
|
||||
5: git_filter_source_repo
|
||||
6: git_filter_source_repo
|
||||
7: git_filter_source_repo
|
||||
8: git_filter_source_repo
|
||||
9: git_filter_source_repo
|
||||
10: git_filter_source_repo
|
||||
11: git_filter_source_repo
|
||||
12: git_filter_source_repo
|
||||
13: git_filter_source_repo
|
||||
14: git_libgit2_prerelease
|
||||
15: <unknown>
|
||||
16: <unknown>
|
||||
17: <unknown>
|
||||
18: <unknown>
|
||||
19: git_midx_writer_dump
|
||||
20: git_filter_source_repo
|
||||
21: git_midx_writer_dump
|
||||
22: BaseThreadInitThunk
|
||||
23: RtlUserThreadStart
|
||||
0.323957100s INFO prepare_target{force=false package_id=windows v0.54.0 target="windows"}: cargo::core::compiler::fingerprint: fingerprint error for windows v0.54.0/Check { test: false }/TargetInner { name_inferred: true, ..: lib_target("windows", ["lib"], "C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-0.54.0\\src\\lib.rs", Edition2021) }
|
||||
0.323966600s INFO prepare_target{force=false package_id=windows v0.54.0 target="windows"}: cargo::core::compiler::fingerprint: err: failed to read `C:\RustProjects\AiRust\target\debug\.fingerprint\windows-1b43aae9b5bec48f\lib-windows`
|
||||
|
||||
Caused by:
|
||||
The system cannot find the file specified. (os error 2)
|
||||
|
||||
Stack backtrace:
|
||||
0: git_midx_writer_dump
|
||||
1: git_midx_writer_dump
|
||||
2: git_midx_writer_dump
|
||||
3: git_midx_writer_dump
|
||||
4: git_filter_source_repo
|
||||
5: git_filter_source_repo
|
||||
6: git_filter_source_repo
|
||||
7: git_filter_source_repo
|
||||
8: git_filter_source_repo
|
||||
9: git_filter_source_repo
|
||||
10: git_filter_source_repo
|
||||
11: git_filter_source_repo
|
||||
12: git_filter_source_repo
|
||||
13: git_filter_source_repo
|
||||
14: git_libgit2_prerelease
|
||||
15: <unknown>
|
||||
16: <unknown>
|
||||
17: <unknown>
|
||||
18: <unknown>
|
||||
19: git_midx_writer_dump
|
||||
20: git_filter_source_repo
|
||||
21: git_midx_writer_dump
|
||||
22: BaseThreadInitThunk
|
||||
23: RtlUserThreadStart
|
||||
0.324544000s INFO prepare_target{force=false package_id=windows-core v0.54.0 target="windows_core"}: cargo::core::compiler::fingerprint: fingerprint error for windows-core v0.54.0/Check { test: false }/TargetInner { name_inferred: true, ..: lib_target("windows_core", ["lib"], "C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-core-0.54.0\\src\\lib.rs", Edition2021) }
|
||||
0.324566300s INFO prepare_target{force=false package_id=windows-core v0.54.0 target="windows_core"}: cargo::core::compiler::fingerprint: err: failed to read `C:\RustProjects\AiRust\target\debug\.fingerprint\windows-core-7434de2f0226698e\lib-windows_core`
|
||||
|
||||
Caused by:
|
||||
The system cannot find the file specified. (os error 2)
|
||||
|
||||
Stack backtrace:
|
||||
0: git_midx_writer_dump
|
||||
1: git_midx_writer_dump
|
||||
2: git_midx_writer_dump
|
||||
3: git_midx_writer_dump
|
||||
4: git_filter_source_repo
|
||||
5: git_filter_source_repo
|
||||
6: git_filter_source_repo
|
||||
7: git_filter_source_repo
|
||||
8: git_filter_source_repo
|
||||
9: git_filter_source_repo
|
||||
10: git_filter_source_repo
|
||||
11: git_filter_source_repo
|
||||
12: git_filter_source_repo
|
||||
13: git_filter_source_repo
|
||||
14: git_filter_source_repo
|
||||
15: git_libgit2_prerelease
|
||||
16: <unknown>
|
||||
17: <unknown>
|
||||
18: <unknown>
|
||||
19: <unknown>
|
||||
20: git_midx_writer_dump
|
||||
21: git_filter_source_repo
|
||||
22: git_midx_writer_dump
|
||||
23: BaseThreadInitThunk
|
||||
24: RtlUserThreadStart
|
||||
0.324929300s INFO prepare_target{force=false package_id=windows-result v0.1.2 target="windows_result"}: cargo::core::compiler::fingerprint: fingerprint error for windows-result v0.1.2/Check { test: false }/TargetInner { ..: lib_target("windows_result", ["lib"], "C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-result-0.1.2\\src\\lib.rs", Edition2021) }
|
||||
0.324943100s INFO prepare_target{force=false package_id=windows-result v0.1.2 target="windows_result"}: cargo::core::compiler::fingerprint: err: failed to read `C:\RustProjects\AiRust\target\debug\.fingerprint\windows-result-eea0e1f295d453cb\lib-windows_result`
|
||||
|
||||
Caused by:
|
||||
The system cannot find the file specified. (os error 2)
|
||||
|
||||
Stack backtrace:
|
||||
0: git_midx_writer_dump
|
||||
1: git_midx_writer_dump
|
||||
2: git_midx_writer_dump
|
||||
3: git_midx_writer_dump
|
||||
4: git_filter_source_repo
|
||||
5: git_filter_source_repo
|
||||
6: git_filter_source_repo
|
||||
7: git_filter_source_repo
|
||||
8: git_filter_source_repo
|
||||
9: git_filter_source_repo
|
||||
10: git_filter_source_repo
|
||||
11: git_filter_source_repo
|
||||
12: git_filter_source_repo
|
||||
13: git_filter_source_repo
|
||||
14: git_filter_source_repo
|
||||
15: git_filter_source_repo
|
||||
16: git_libgit2_prerelease
|
||||
17: <unknown>
|
||||
18: <unknown>
|
||||
19: <unknown>
|
||||
20: <unknown>
|
||||
21: git_midx_writer_dump
|
||||
22: git_filter_source_repo
|
||||
23: git_midx_writer_dump
|
||||
24: BaseThreadInitThunk
|
||||
25: RtlUserThreadStart
|
||||
0.325210400s INFO prepare_target{force=false package_id=hound v3.5.1 target="hound"}: cargo::core::compiler::fingerprint: fingerprint error for hound v3.5.1/Check { test: false }/TargetInner { name_inferred: true, ..: lib_target("hound", ["lib"], "C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hound-3.5.1\\src\\lib.rs", Edition2015) }
|
||||
0.325220200s INFO prepare_target{force=false package_id=hound v3.5.1 target="hound"}: cargo::core::compiler::fingerprint: err: failed to read `C:\RustProjects\AiRust\target\debug\.fingerprint\hound-be10cfd4325f564c\lib-hound`
|
||||
|
||||
Caused by:
|
||||
The system cannot find the file specified. (os error 2)
|
||||
|
||||
Stack backtrace:
|
||||
0: git_midx_writer_dump
|
||||
1: git_midx_writer_dump
|
||||
2: git_midx_writer_dump
|
||||
3: git_midx_writer_dump
|
||||
4: git_filter_source_repo
|
||||
5: git_filter_source_repo
|
||||
6: git_filter_source_repo
|
||||
7: git_filter_source_repo
|
||||
8: git_filter_source_repo
|
||||
9: git_filter_source_repo
|
||||
10: git_filter_source_repo
|
||||
11: git_filter_source_repo
|
||||
12: git_filter_source_repo
|
||||
13: git_libgit2_prerelease
|
||||
14: <unknown>
|
||||
15: <unknown>
|
||||
16: <unknown>
|
||||
17: <unknown>
|
||||
18: git_midx_writer_dump
|
||||
19: git_filter_source_repo
|
||||
20: git_midx_writer_dump
|
||||
21: BaseThreadInitThunk
|
||||
22: RtlUserThreadStart
|
||||
0.325420100s INFO prepare_target{force=false package_id=lewton v0.10.2 target="lewton"}: cargo::core::compiler::fingerprint: fingerprint error for lewton v0.10.2/Check { test: false }/TargetInner { ..: lib_target("lewton", ["lib"], "C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\lewton-0.10.2\\src\\lib.rs", Edition2015) }
|
||||
0.325428800s INFO prepare_target{force=false package_id=lewton v0.10.2 target="lewton"}: cargo::core::compiler::fingerprint: err: failed to read `C:\RustProjects\AiRust\target\debug\.fingerprint\lewton-c262ad10cc53a181\lib-lewton`
|
||||
|
||||
Caused by:
|
||||
The system cannot find the file specified. (os error 2)
|
||||
|
||||
Stack backtrace:
|
||||
0: git_midx_writer_dump
|
||||
1: git_midx_writer_dump
|
||||
2: git_midx_writer_dump
|
||||
3: git_midx_writer_dump
|
||||
4: git_filter_source_repo
|
||||
5: git_filter_source_repo
|
||||
6: git_filter_source_repo
|
||||
7: git_filter_source_repo
|
||||
8: git_filter_source_repo
|
||||
9: git_filter_source_repo
|
||||
10: git_filter_source_repo
|
||||
11: git_filter_source_repo
|
||||
12: git_filter_source_repo
|
||||
13: git_libgit2_prerelease
|
||||
14: <unknown>
|
||||
15: <unknown>
|
||||
16: <unknown>
|
||||
17: <unknown>
|
||||
18: git_midx_writer_dump
|
||||
19: git_filter_source_repo
|
||||
20: git_midx_writer_dump
|
||||
21: BaseThreadInitThunk
|
||||
22: RtlUserThreadStart
|
||||
0.325795800s INFO prepare_target{force=false package_id=byteorder v1.5.0 target="byteorder"}: cargo::core::compiler::fingerprint: fingerprint error for byteorder v1.5.0/Check { test: false }/TargetInner { benched: false, ..: lib_target("byteorder", ["lib"], "C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\byteorder-1.5.0\\src\\lib.rs", Edition2021) }
|
||||
0.325807300s INFO prepare_target{force=false package_id=byteorder v1.5.0 target="byteorder"}: cargo::core::compiler::fingerprint: err: failed to read `C:\RustProjects\AiRust\target\debug\.fingerprint\byteorder-4f2bf0fa23c320bf\lib-byteorder`
|
||||
|
||||
Caused by:
|
||||
The system cannot find the file specified. (os error 2)
|
||||
|
||||
Stack backtrace:
|
||||
0: git_midx_writer_dump
|
||||
1: git_midx_writer_dump
|
||||
2: git_midx_writer_dump
|
||||
3: git_midx_writer_dump
|
||||
4: git_filter_source_repo
|
||||
5: git_filter_source_repo
|
||||
6: git_filter_source_repo
|
||||
7: git_filter_source_repo
|
||||
8: git_filter_source_repo
|
||||
9: git_filter_source_repo
|
||||
10: git_filter_source_repo
|
||||
11: git_filter_source_repo
|
||||
12: git_filter_source_repo
|
||||
13: git_filter_source_repo
|
||||
14: git_libgit2_prerelease
|
||||
15: <unknown>
|
||||
16: <unknown>
|
||||
17: <unknown>
|
||||
18: <unknown>
|
||||
19: git_midx_writer_dump
|
||||
20: git_filter_source_repo
|
||||
21: git_midx_writer_dump
|
||||
22: BaseThreadInitThunk
|
||||
23: RtlUserThreadStart
|
||||
0.326071000s INFO prepare_target{force=false package_id=ogg v0.8.0 target="ogg"}: cargo::core::compiler::fingerprint: fingerprint error for ogg v0.8.0/Check { test: false }/TargetInner { ..: lib_target("ogg", ["lib"], "C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ogg-0.8.0\\src\\lib.rs", Edition2015) }
|
||||
0.326078500s INFO prepare_target{force=false package_id=ogg v0.8.0 target="ogg"}: cargo::core::compiler::fingerprint: err: failed to read `C:\RustProjects\AiRust\target\debug\.fingerprint\ogg-5bdc2b6b53392690\lib-ogg`
|
||||
|
||||
Caused by:
|
||||
The system cannot find the file specified. (os error 2)
|
||||
|
||||
Stack backtrace:
|
||||
0: git_midx_writer_dump
|
||||
1: git_midx_writer_dump
|
||||
2: git_midx_writer_dump
|
||||
3: git_midx_writer_dump
|
||||
4: git_filter_source_repo
|
||||
5: git_filter_source_repo
|
||||
6: git_filter_source_repo
|
||||
7: git_filter_source_repo
|
||||
8: git_filter_source_repo
|
||||
9: git_filter_source_repo
|
||||
10: git_filter_source_repo
|
||||
11: git_filter_source_repo
|
||||
12: git_filter_source_repo
|
||||
13: git_filter_source_repo
|
||||
14: git_libgit2_prerelease
|
||||
15: <unknown>
|
||||
16: <unknown>
|
||||
17: <unknown>
|
||||
18: <unknown>
|
||||
19: git_midx_writer_dump
|
||||
20: git_filter_source_repo
|
||||
21: git_midx_writer_dump
|
||||
22: BaseThreadInitThunk
|
||||
23: RtlUserThreadStart
|
||||
0.326300300s INFO prepare_target{force=false package_id=symphonia v0.5.5 target="symphonia"}: cargo::core::compiler::fingerprint: fingerprint error for symphonia v0.5.5/Check { test: false }/TargetInner { ..: lib_target("symphonia", ["lib"], "C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\symphonia-0.5.5\\src\\lib.rs", Edition2018) }
|
||||
0.326310500s INFO prepare_target{force=false package_id=symphonia v0.5.5 target="symphonia"}: cargo::core::compiler::fingerprint: err: failed to read `C:\RustProjects\AiRust\target\debug\.fingerprint\symphonia-c3490041fd2f999b\lib-symphonia`
|
||||
|
||||
Caused by:
|
||||
The system cannot find the file specified. (os error 2)
|
||||
|
||||
Stack backtrace:
|
||||
0: git_midx_writer_dump
|
||||
1: git_midx_writer_dump
|
||||
2: git_midx_writer_dump
|
||||
3: git_midx_writer_dump
|
||||
4: git_filter_source_repo
|
||||
5: git_filter_source_repo
|
||||
6: git_filter_source_repo
|
||||
7: git_filter_source_repo
|
||||
8: git_filter_source_repo
|
||||
9: git_filter_source_repo
|
||||
10: git_filter_source_repo
|
||||
11: git_filter_source_repo
|
||||
12: git_filter_source_repo
|
||||
13: git_libgit2_prerelease
|
||||
14: <unknown>
|
||||
15: <unknown>
|
||||
16: <unknown>
|
||||
17: <unknown>
|
||||
18: git_midx_writer_dump
|
||||
19: git_filter_source_repo
|
||||
20: git_midx_writer_dump
|
||||
21: BaseThreadInitThunk
|
||||
22: RtlUserThreadStart
|
||||
0.326632100s INFO prepare_target{force=false package_id=lazy_static v1.5.0 target="lazy_static"}: cargo::core::compiler::fingerprint: fingerprint error for lazy_static v1.5.0/Check { test: false }/TargetInner { name_inferred: true, ..: lib_target("lazy_static", ["lib"], "C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\lazy_static-1.5.0\\src\\lib.rs", Edition2015) }
|
||||
0.326640700s INFO prepare_target{force=false package_id=lazy_static v1.5.0 target="lazy_static"}: cargo::core::compiler::fingerprint: err: failed to read `C:\RustProjects\AiRust\target\debug\.fingerprint\lazy_static-38837c81b0533351\lib-lazy_static`
|
||||
|
||||
Caused by:
|
||||
The system cannot find the file specified. (os error 2)
|
||||
|
||||
Stack backtrace:
|
||||
0: git_midx_writer_dump
|
||||
1: git_midx_writer_dump
|
||||
2: git_midx_writer_dump
|
||||
3: git_midx_writer_dump
|
||||
4: git_filter_source_repo
|
||||
5: git_filter_source_repo
|
||||
6: git_filter_source_repo
|
||||
7: git_filter_source_repo
|
||||
8: git_filter_source_repo
|
||||
9: git_filter_source_repo
|
||||
10: git_filter_source_repo
|
||||
11: git_filter_source_repo
|
||||
12: git_filter_source_repo
|
||||
13: git_filter_source_repo
|
||||
14: git_libgit2_prerelease
|
||||
15: <unknown>
|
||||
16: <unknown>
|
||||
17: <unknown>
|
||||
18: <unknown>
|
||||
19: git_midx_writer_dump
|
||||
20: git_filter_source_repo
|
||||
21: git_midx_writer_dump
|
||||
22: BaseThreadInitThunk
|
||||
23: RtlUserThreadStart
|
||||
0.326902700s INFO prepare_target{force=false package_id=symphonia-bundle-mp3 v0.5.5 target="symphonia_bundle_mp3"}: cargo::core::compiler::fingerprint: fingerprint error for symphonia-bundle-mp3 v0.5.5/Check { test: false }/TargetInner { ..: lib_target("symphonia_bundle_mp3", ["lib"], "C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\symphonia-bundle-mp3-0.5.5\\src\\lib.rs", Edition2018) }
|
||||
0.326919300s INFO prepare_target{force=false package_id=symphonia-bundle-mp3 v0.5.5 target="symphonia_bundle_mp3"}: cargo::core::compiler::fingerprint: err: failed to read `C:\RustProjects\AiRust\target\debug\.fingerprint\symphonia-bundle-mp3-b61efcc9c3799463\lib-symphonia_bundle_mp3`
|
||||
|
||||
Caused by:
|
||||
The system cannot find the file specified. (os error 2)
|
||||
|
||||
Stack backtrace:
|
||||
0: git_midx_writer_dump
|
||||
1: git_midx_writer_dump
|
||||
2: git_midx_writer_dump
|
||||
3: git_midx_writer_dump
|
||||
4: git_filter_source_repo
|
||||
5: git_filter_source_repo
|
||||
6: git_filter_source_repo
|
||||
7: git_filter_source_repo
|
||||
8: git_filter_source_repo
|
||||
9: git_filter_source_repo
|
||||
10: git_filter_source_repo
|
||||
11: git_filter_source_repo
|
||||
12: git_filter_source_repo
|
||||
13: git_filter_source_repo
|
||||
14: git_libgit2_prerelease
|
||||
15: <unknown>
|
||||
16: <unknown>
|
||||
17: <unknown>
|
||||
18: <unknown>
|
||||
19: git_midx_writer_dump
|
||||
20: git_filter_source_repo
|
||||
21: git_midx_writer_dump
|
||||
22: BaseThreadInitThunk
|
||||
23: RtlUserThreadStart
|
||||
0.327213100s INFO prepare_target{force=false package_id=symphonia-core v0.5.5 target="symphonia_core"}: cargo::core::compiler::fingerprint: fingerprint error for symphonia-core v0.5.5/Check { test: false }/TargetInner { ..: lib_target("symphonia_core", ["lib"], "C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\symphonia-core-0.5.5\\src\\lib.rs", Edition2018) }
|
||||
0.327221900s INFO prepare_target{force=false package_id=symphonia-core v0.5.5 target="symphonia_core"}: cargo::core::compiler::fingerprint: err: failed to read `C:\RustProjects\AiRust\target\debug\.fingerprint\symphonia-core-67cf50bf711c7fb3\lib-symphonia_core`
|
||||
|
||||
Caused by:
|
||||
The system cannot find the file specified. (os error 2)
|
||||
|
||||
Stack backtrace:
|
||||
0: git_midx_writer_dump
|
||||
1: git_midx_writer_dump
|
||||
2: git_midx_writer_dump
|
||||
3: git_midx_writer_dump
|
||||
4: git_filter_source_repo
|
||||
5: git_filter_source_repo
|
||||
6: git_filter_source_repo
|
||||
7: git_filter_source_repo
|
||||
8: git_filter_source_repo
|
||||
9: git_filter_source_repo
|
||||
10: git_filter_source_repo
|
||||
11: git_filter_source_repo
|
||||
12: git_filter_source_repo
|
||||
13: git_filter_source_repo
|
||||
14: git_filter_source_repo
|
||||
15: git_libgit2_prerelease
|
||||
16: <unknown>
|
||||
17: <unknown>
|
||||
18: <unknown>
|
||||
19: <unknown>
|
||||
20: git_midx_writer_dump
|
||||
21: git_filter_source_repo
|
||||
22: git_midx_writer_dump
|
||||
23: BaseThreadInitThunk
|
||||
24: RtlUserThreadStart
|
||||
0.327725100s INFO prepare_target{force=false package_id=bitflags v1.3.2 target="bitflags"}: cargo::core::compiler::fingerprint: fingerprint error for bitflags v1.3.2/Check { test: false }/TargetInner { name_inferred: true, ..: lib_target("bitflags", ["lib"], "C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\bitflags-1.3.2\\src\\lib.rs", Edition2018) }
|
||||
0.327740700s INFO prepare_target{force=false package_id=bitflags v1.3.2 target="bitflags"}: cargo::core::compiler::fingerprint: err: failed to read `C:\RustProjects\AiRust\target\debug\.fingerprint\bitflags-67af214d84423122\lib-bitflags`
|
||||
|
||||
Caused by:
|
||||
The system cannot find the file specified. (os error 2)
|
||||
|
||||
Stack backtrace:
|
||||
0: git_midx_writer_dump
|
||||
1: git_midx_writer_dump
|
||||
2: git_midx_writer_dump
|
||||
3: git_midx_writer_dump
|
||||
4: git_filter_source_repo
|
||||
5: git_filter_source_repo
|
||||
6: git_filter_source_repo
|
||||
7: git_filter_source_repo
|
||||
8: git_filter_source_repo
|
||||
9: git_filter_source_repo
|
||||
10: git_filter_source_repo
|
||||
11: git_filter_source_repo
|
||||
12: git_filter_source_repo
|
||||
13: git_filter_source_repo
|
||||
14: git_filter_source_repo
|
||||
15: git_filter_source_repo
|
||||
16: git_libgit2_prerelease
|
||||
17: <unknown>
|
||||
18: <unknown>
|
||||
19: <unknown>
|
||||
20: <unknown>
|
||||
21: git_midx_writer_dump
|
||||
22: git_filter_source_repo
|
||||
23: git_midx_writer_dump
|
||||
24: BaseThreadInitThunk
|
||||
25: RtlUserThreadStart
|
||||
0.328162100s INFO prepare_target{force=false package_id=symphonia-metadata v0.5.5 target="symphonia_metadata"}: cargo::core::compiler::fingerprint: fingerprint error for symphonia-metadata v0.5.5/Check { test: false }/TargetInner { ..: lib_target("symphonia_metadata", ["lib"], "C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\symphonia-metadata-0.5.5\\src\\lib.rs", Edition2018) }
|
||||
0.328188300s INFO prepare_target{force=false package_id=symphonia-metadata v0.5.5 target="symphonia_metadata"}: cargo::core::compiler::fingerprint: err: failed to read `C:\RustProjects\AiRust\target\debug\.fingerprint\symphonia-metadata-0ff107bff21095ad\lib-symphonia_metadata`
|
||||
|
||||
Caused by:
|
||||
The system cannot find the file specified. (os error 2)
|
||||
|
||||
Stack backtrace:
|
||||
0: git_midx_writer_dump
|
||||
1: git_midx_writer_dump
|
||||
2: git_midx_writer_dump
|
||||
3: git_midx_writer_dump
|
||||
4: git_filter_source_repo
|
||||
5: git_filter_source_repo
|
||||
6: git_filter_source_repo
|
||||
7: git_filter_source_repo
|
||||
8: git_filter_source_repo
|
||||
9: git_filter_source_repo
|
||||
10: git_filter_source_repo
|
||||
11: git_filter_source_repo
|
||||
12: git_filter_source_repo
|
||||
13: git_filter_source_repo
|
||||
14: git_filter_source_repo
|
||||
15: git_libgit2_prerelease
|
||||
16: <unknown>
|
||||
17: <unknown>
|
||||
18: <unknown>
|
||||
19: <unknown>
|
||||
20: git_midx_writer_dump
|
||||
21: git_filter_source_repo
|
||||
22: git_midx_writer_dump
|
||||
23: BaseThreadInitThunk
|
||||
24: RtlUserThreadStart
|
||||
0.332867000s INFO prepare_target{force=false package_id=AiRust v0.1.0 (C:\RustProjects\AiRust) target="AiRust-cli"}: cargo::core::compiler::fingerprint: fingerprint error for AiRust v0.1.0 (C:\RustProjects\AiRust)/Check { test: true }/TargetInner { name: "AiRust-cli", doc: true, ..: with_path("C:\\RustProjects\\AiRust\\src\\main.rs", Edition2021) }
|
||||
0.332886200s INFO prepare_target{force=false package_id=AiRust v0.1.0 (C:\RustProjects\AiRust) target="AiRust-cli"}: cargo::core::compiler::fingerprint: err: failed to read `C:\RustProjects\AiRust\target\debug\.fingerprint\AiRust-d63c8ae25b7497b6\test-bin-AiRust-cli`
|
||||
|
||||
Caused by:
|
||||
The system cannot find the file specified. (os error 2)
|
||||
|
||||
Stack backtrace:
|
||||
0: git_midx_writer_dump
|
||||
1: git_midx_writer_dump
|
||||
2: git_midx_writer_dump
|
||||
3: git_midx_writer_dump
|
||||
4: git_filter_source_repo
|
||||
5: git_filter_source_repo
|
||||
6: git_filter_source_repo
|
||||
7: git_filter_source_repo
|
||||
8: git_filter_source_repo
|
||||
9: git_filter_source_repo
|
||||
10: git_filter_source_repo
|
||||
11: git_libgit2_prerelease
|
||||
12: <unknown>
|
||||
13: <unknown>
|
||||
14: <unknown>
|
||||
15: <unknown>
|
||||
16: git_midx_writer_dump
|
||||
17: git_filter_source_repo
|
||||
18: git_midx_writer_dump
|
||||
19: BaseThreadInitThunk
|
||||
20: RtlUserThreadStart
|
||||
Checking arrayvec v0.7.6
|
||||
Checking lazy_static v1.5.0
|
||||
Checking bitflags v1.3.2
|
||||
Checking windows-result v0.1.2
|
||||
Checking byteorder v1.5.0
|
||||
Checking dasp_sample v0.11.0
|
||||
Checking hound v3.5.1
|
||||
Checking claxon v0.4.3
|
||||
Checking windows-core v0.54.0
|
||||
Checking ogg v0.8.0
|
||||
Checking polycool v0.4.0
|
||||
Checking symphonia-core v0.5.5
|
||||
Checking lewton v0.10.2
|
||||
Checking kurbo v0.13.1
|
||||
Checking windows v0.54.0
|
||||
Checking symphonia-metadata v0.5.5
|
||||
Checking peniko v0.6.1
|
||||
Checking vello_common v0.0.6
|
||||
Checking symphonia-bundle-mp3 v0.5.5
|
||||
Checking symphonia v0.5.5
|
||||
Checking vello_cpu v0.0.6
|
||||
Checking epaint v0.34.2
|
||||
Checking egui v0.34.2
|
||||
Checking egui_glow v0.34.2
|
||||
Checking egui-winit v0.34.2
|
||||
Checking eframe v0.34.2
|
||||
Checking cpal v0.15.3
|
||||
Checking rodio v0.20.1
|
||||
Checking AiRust v0.1.0 (C:\RustProjects\AiRust)
|
||||
error: could not compile `AiRust` (bin "AiRust-cli") due to 2 previous errors
|
||||
warning: build failed, waiting for other jobs to finish...
|
||||
error: could not compile `AiRust` (bin "AiRust-cli" test) due to 2 previous errors
|
||||
|
||||
+249
-226
@@ -1,17 +1,17 @@
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\proc-macro2-1.0.106\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\proc-macro2-1.0.106\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","proc-macro"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\proc-macro2-f29c3a04cd092e27\\build-script-build.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\proc-macro2-f29c3a04cd092e27\\build_script_build.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106","linked_libs":[],"linked_paths":[],"cfgs":["wrap_proc_macro","proc_macro_span_location","proc_macro_span_file"],"env":[],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\proc-macro2-04c304ef8652ebe8\\out"}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.24","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicode-ident-1.0.24\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unicode_ident","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicode-ident-1.0.24\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libunicode_ident-c2fe9f6b8ade098b.rlib","C:\\RustProjects\\AiRust\\target\\debug\\deps\\libunicode_ident-c2fe9f6b8ade098b.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#quote@1.0.45","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\quote-1.0.45\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\quote-1.0.45\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","proc-macro"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\quote-78c7521c3e232bbe\\build-script-build.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\quote-78c7521c3e232bbe\\build_script_build.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.24","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicode-ident-1.0.24\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unicode_ident","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicode-ident-1.0.24\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libunicode_ident-c2fe9f6b8ade098b.rlib","C:\\RustProjects\\AiRust\\target\\debug\\deps\\libunicode_ident-c2fe9f6b8ade098b.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cfg-if-1.0.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cfg_if","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cfg-if-1.0.4\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libcfg_if-38379743a7c2c287.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-link@0.2.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-link-0.2.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_link","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-link-0.2.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libwindows_link-54c7aa1677a9df5f.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\smallvec-1.15.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"smallvec","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\smallvec-1.15.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["const_generics","const_new"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libsmallvec-f2333e4772998970.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#log@0.4.29","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\log-0.4.29\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"log","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\log-0.4.29\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\liblog-ad7493728820177f.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.5","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\version_check-0.9.5\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"version_check","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\version_check-0.9.5\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libversion_check-dfb8931b0be28ab2.rlib","C:\\RustProjects\\AiRust\\target\\debug\\deps\\libversion_check-dfb8931b0be28ab2.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\smallvec-1.15.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"smallvec","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\smallvec-1.15.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["const_generics","const_new"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libsmallvec-f2333e4772998970.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.12","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\parking_lot_core-0.9.12\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\parking_lot_core-0.9.12\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\parking_lot_core-12fc7eb0299b59cc\\build-script-build.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\parking_lot_core-12fc7eb0299b59cc\\build_script_build.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\scopeguard-1.2.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"scopeguard","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\scopeguard-1.2.0\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libscopeguard-7b79691b0fdd1d97.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.5","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\version_check-0.9.5\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"version_check","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\version_check-0.9.5\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libversion_check-dfb8931b0be28ab2.rlib","C:\\RustProjects\\AiRust\\target\\debug\\deps\\libversion_check-dfb8931b0be28ab2.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.4","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\getrandom-0.3.4\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\getrandom-0.3.4\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\getrandom-d4eabbce2af4a893\\build-script-build.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\getrandom-d4eabbce2af4a893\\build_script_build.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.18","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\itoa-1.0.18\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"itoa","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\itoa-1.0.18\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libitoa-14018c84296d4b84.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.17","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\pin-project-lite-0.2.17\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"pin_project_lite","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\pin-project-lite-0.2.17\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libpin_project_lite-65a923b6a1ce6e69.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.18","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\itoa-1.0.18\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"itoa","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\itoa-1.0.18\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libitoa-14018c84296d4b84.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\scopeguard-1.2.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"scopeguard","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\scopeguard-1.2.0\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libscopeguard-7b79691b0fdd1d97.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.4","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\once_cell-1.21.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"once_cell","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\once_cell-1.21.4\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","race","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libonce_cell-6270f440ee974197.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#foldhash@0.2.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\foldhash-0.2.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"foldhash","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\foldhash-0.2.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libfoldhash-ca2dd63eb3325ca1.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\bytes-1.11.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"bytes","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\bytes-1.11.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libbytes-5e0d69cde3fec79e.rmeta"],"executable":null,"fresh":true}
|
||||
@@ -22,13 +22,13 @@
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.4","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\getrandom-86f7dbd5db73157e\\out"}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.61.2","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-sys-0.61.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_sys","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-sys-0.61.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["Wdk","Wdk_Foundation","Wdk_Storage","Wdk_Storage_FileSystem","Wdk_System","Wdk_System_IO","Win32","Win32_Foundation","Win32_Networking","Win32_Networking_WinSock","Win32_Security","Win32_Security_Authentication","Win32_Security_Authentication_Identity","Win32_Security_Credentials","Win32_Security_Cryptography","Win32_Storage","Win32_Storage_FileSystem","Win32_System","Win32_System_Com","Win32_System_Console","Win32_System_IO","Win32_System_LibraryLoader","Win32_System_Memory","Win32_System_Pipes","Win32_System_SystemInformation","Win32_System_SystemServices","Win32_System_Threading","Win32_System_Time","Win32_System_WindowsProgramming","Win32_UI","Win32_UI_Input","Win32_UI_Input_KeyboardAndMouse","Win32_UI_Shell","Win32_UI_Shell_Common","Win32_UI_WindowsAndMessaging","default"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libwindows_sys-0b844929bbed24c8.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.16.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hashbrown-0.16.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hashbrown","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hashbrown-0.16.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default-hasher","raw-entry"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libhashbrown-4b2be0a03958d9f4.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.32","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-core-0.3.32\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures_core","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-core-0.3.32\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libfutures_core-3e3ed5c46720cded.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#memchr@2.8.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\memchr-2.8.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"memchr","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\memchr-2.8.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std","use_std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libmemchr-6f073af150664915.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.32","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-core-0.3.32\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures_core","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-core-0.3.32\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libfutures_core-3e3ed5c46720cded.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\stable_deref_trait-1.2.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"stable_deref_trait","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\stable_deref_trait-1.2.1\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libstable_deref_trait-50f459bffcaca325.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cfg-if-1.0.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cfg_if","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cfg-if-1.0.4\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libcfg_if-3dccf8372c0e472c.rlib","C:\\RustProjects\\AiRust\\target\\debug\\deps\\libcfg_if-3dccf8372c0e472c.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\generic-array-0.14.7\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\generic-array-0.14.7\\build.rs","edition":"2015","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["more_lengths"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\generic-array-91b16dd255e0db51\\build-script-build.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\generic-array-91b16dd255e0db51\\build_script_build.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#autocfg@1.5.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\autocfg-1.5.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"autocfg","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\autocfg-1.5.0\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libautocfg-d6d09f580b6b9b13.rlib","C:\\RustProjects\\AiRust\\target\\debug\\deps\\libautocfg-d6d09f580b6b9b13.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#typenum@1.20.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\typenum-1.20.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"typenum","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\typenum-1.20.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libtypenum-0e3871dad3a2d307.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#find-msvc-tools@0.1.9","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\find-msvc-tools-0.1.9\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"find_msvc_tools","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\find-msvc-tools-0.1.9\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libfind_msvc_tools-824f9ded730dd358.rlib","C:\\RustProjects\\AiRust\\target\\debug\\deps\\libfind_msvc_tools-824f9ded730dd358.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.32","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-sink-0.3.32\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures_sink","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-sink-0.3.32\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libfutures_sink-e76d17340c3b29b8.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#bitflags@2.11.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\bitflags-2.11.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"bitflags","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\bitflags-2.11.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libbitflags-59f223fa5b4495d7.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#quote@1.0.45","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\quote-1.0.45\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"quote","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\quote-1.0.45\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","proc-macro"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libquote-e5e8686072bd479a.rlib","C:\\RustProjects\\AiRust\\target\\debug\\deps\\libquote-e5e8686072bd479a.rmeta"],"executable":null,"fresh":true}
|
||||
@@ -37,362 +37,354 @@
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7","linked_libs":[],"linked_paths":[],"cfgs":["relaxed_coherence"],"env":[],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\generic-array-5ed0f37b26cdacc4\\out"}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#mio@1.2.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\mio-1.2.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"mio","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\mio-1.2.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["net","os-ext","os-poll"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libmio-180a5d8f7bb0151c.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#socket2@0.6.3","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\socket2-0.6.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"socket2","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\socket2-0.6.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["all"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libsocket2-336f73f282f467fa.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#find-msvc-tools@0.1.9","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\find-msvc-tools-0.1.9\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"find_msvc_tools","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\find-msvc-tools-0.1.9\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libfind_msvc_tools-824f9ded730dd358.rlib","C:\\RustProjects\\AiRust\\target\\debug\\deps\\libfind_msvc_tools-824f9ded730dd358.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#typenum@1.20.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\typenum-1.20.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"typenum","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\typenum-1.20.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libtypenum-0e3871dad3a2d307.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#shlex@1.3.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\shlex-1.3.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"shlex","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\shlex-1.3.0\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libshlex-8a85cb2cd59e9679.rlib","C:\\RustProjects\\AiRust\\target\\debug\\deps\\libshlex-8a85cb2cd59e9679.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.36","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tracing-core-0.1.36\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tracing_core","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tracing-core-0.1.36\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["once_cell","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libtracing_core-512b29c6d3b5ece4.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#equivalent@1.0.2","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\equivalent-1.0.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"equivalent","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\equivalent-1.0.2\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libequivalent-388c529534c59c75.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#http@1.4.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\http-1.4.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"http","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\http-1.4.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libhttp-a7d1e9104b8d0fd0.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_msvc@0.52.6","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows_x86_64_msvc-0.52.6\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows_x86_64_msvc-0.52.6\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\windows_x86_64_msvc-d70364700e1c05c8\\build-script-build.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\windows_x86_64_msvc-d70364700e1c05c8\\build_script_build.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#slab@0.4.12","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\slab-0.4.12\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"slab","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\slab-0.4.12\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libslab-d1f8dc39218e386f.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.32","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-channel-0.3.32\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures_channel","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-channel-0.3.32\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","futures-sink","sink","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libfutures_channel-ffe63e2276028abc.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.8.48","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerocopy-0.8.48\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerocopy-0.8.48\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["simd"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\zerocopy-f68230026d804e64\\build-script-build.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\zerocopy-f68230026d804e64\\build_script_build.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#siphasher@1.0.3","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\siphasher-1.0.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"siphasher","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\siphasher-1.0.3\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libsiphasher-eb85d5c82ffed796.rlib","C:\\RustProjects\\AiRust\\target\\debug\\deps\\libsiphasher-eb85d5c82ffed796.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.2","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\percent-encoding-2.3.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"percent_encoding","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\percent-encoding-2.3.2\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libpercent_encoding-6e03319ebaec33ad.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#syn@2.0.117","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\syn-2.0.117\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"syn","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\syn-2.0.117\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["clone-impls","default","derive","extra-traits","fold","full","parsing","printing","proc-macro","visit","visit-mut"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libsyn-66e137b040f88f36.rlib","C:\\RustProjects\\AiRust\\target\\debug\\deps\\libsyn-66e137b040f88f36.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.5","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\parking_lot-0.12.5\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"parking_lot","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\parking_lot-0.12.5\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libparking_lot-2678dc8b727cd5a9.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#jobserver@0.1.34","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\jobserver-0.1.34\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"jobserver","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\jobserver-0.1.34\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libjobserver-9beb25c522707548.rlib","C:\\RustProjects\\AiRust\\target\\debug\\deps\\libjobserver-9beb25c522707548.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\generic-array-0.14.7\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"generic_array","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\generic-array-0.14.7\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["more_lengths"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libgeneric_array-a9798a1842393ca3.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.44","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tracing-0.1.44\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tracing","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tracing-0.1.44\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["log","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libtracing-2f13321e3a412c02.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#indexmap@2.13.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\indexmap-2.13.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"indexmap","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\indexmap-2.13.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libindexmap-bec7b0582e9027db.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.8.48","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\zerocopy-3682ee7f9787793a\\out"}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.44","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tracing-0.1.44\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tracing","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tracing-0.1.44\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["log","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libtracing-2f13321e3a412c02.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_msvc@0.52.6","linked_libs":[],"linked_paths":["native=C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows_x86_64_msvc-0.52.6\\lib"],"cfgs":[],"env":[],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\windows_x86_64_msvc-b76b1035c894b0c1\\out"}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.8.48","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerocopy-0.8.48\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerocopy-0.8.48\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["simd"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\zerocopy-f68230026d804e64\\build-script-build.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\zerocopy-f68230026d804e64\\build_script_build.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#phf_shared@0.13.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf_shared-0.13.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"phf_shared","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf_shared-0.13.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libphf_shared-38d296033c1b73ef.rlib","C:\\RustProjects\\AiRust\\target\\debug\\deps\\libphf_shared-38d296033c1b73ef.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#fastrand@2.4.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\fastrand-2.4.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"fastrand","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\fastrand-2.4.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libfastrand-f47cf8eb7b2e972b.rlib","C:\\RustProjects\\AiRust\\target\\debug\\deps\\libfastrand-f47cf8eb7b2e972b.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures-io@0.3.32","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-io-0.3.32\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures_io","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-io-0.3.32\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libfutures_io-983f50a1396230b5.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures-task@0.3.32","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-task-0.3.32\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures_task","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-task-0.3.32\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libfutures_task-38a4cfcc801ecf4e.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#writeable@0.6.3","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\writeable-0.6.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"writeable","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\writeable-0.6.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libwriteable-b6b647f06e58c236.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#fastrand@2.4.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\fastrand-2.4.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"fastrand","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\fastrand-2.4.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libfastrand-f47cf8eb7b2e972b.rlib","C:\\RustProjects\\AiRust\\target\\debug\\deps\\libfastrand-f47cf8eb7b2e972b.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.5.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crc32fast-1.5.0\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crc32fast-1.5.0\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\crc32fast-1c041f34d42edac0\\build-script-build.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\crc32fast-1c041f34d42edac0\\build_script_build.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#httparse@1.10.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\httparse-1.10.1\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\httparse-1.10.1\\build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\httparse-4dc4630409fa7385\\build-script-build.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\httparse-4dc4630409fa7385\\build_script_build.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#litemap@0.8.2","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\litemap-0.8.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"litemap","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\litemap-0.8.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\liblitemap-91ce8cac9b107a62.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#simd-adler32@0.3.9","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\simd-adler32-0.3.9\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"simd_adler32","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\simd-adler32-0.3.9\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["const-generics","default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libsimd_adler32-77c1681fcfdd8df3.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.5.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crc32fast-1.5.0\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crc32fast-1.5.0\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\crc32fast-1c041f34d42edac0\\build-script-build.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\crc32fast-1c041f34d42edac0\\build_script_build.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#bytemuck_derive@1.10.2","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\bytemuck_derive-1.10.2\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"bytemuck_derive","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\bytemuck_derive-1.10.2\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\bytemuck_derive-14fde5e4a3362b68.dll","C:\\RustProjects\\AiRust\\target\\debug\\deps\\bytemuck_derive-14fde5e4a3362b68.dll.lib","C:\\RustProjects\\AiRust\\target\\debug\\deps\\bytemuck_derive-14fde5e4a3362b68.dll.exp","C:\\RustProjects\\AiRust\\target\\debug\\deps\\bytemuck_derive-14fde5e4a3362b68.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#synstructure@0.13.2","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\synstructure-0.13.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"synstructure","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\synstructure-0.13.2\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","proc-macro"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libsynstructure-e598b1be9bde4790.rlib","C:\\RustProjects\\AiRust\\target\\debug\\deps\\libsynstructure-e598b1be9bde4790.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tokio-macros@2.7.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tokio-macros-2.7.0\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"tokio_macros","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tokio-macros-2.7.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\tokio_macros-fb6c8532eb327637.dll","C:\\RustProjects\\AiRust\\target\\debug\\deps\\tokio_macros-fb6c8532eb327637.dll.lib","C:\\RustProjects\\AiRust\\target\\debug\\deps\\tokio_macros-fb6c8532eb327637.dll.exp","C:\\RustProjects\\AiRust\\target\\debug\\deps\\tokio_macros-fb6c8532eb327637.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zerovec-derive@0.11.3","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerovec-derive-0.11.3\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"zerovec_derive","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerovec-derive-0.11.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\zerovec_derive-c0c16d104a0b0930.dll","C:\\RustProjects\\AiRust\\target\\debug\\deps\\zerovec_derive-c0c16d104a0b0930.dll.lib","C:\\RustProjects\\AiRust\\target\\debug\\deps\\zerovec_derive-c0c16d104a0b0930.dll.exp","C:\\RustProjects\\AiRust\\target\\debug\\deps\\zerovec_derive-c0c16d104a0b0930.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#bytemuck_derive@1.10.2","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\bytemuck_derive-1.10.2\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"bytemuck_derive","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\bytemuck_derive-1.10.2\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\bytemuck_derive-14fde5e4a3362b68.dll","C:\\RustProjects\\AiRust\\target\\debug\\deps\\bytemuck_derive-14fde5e4a3362b68.dll.lib","C:\\RustProjects\\AiRust\\target\\debug\\deps\\bytemuck_derive-14fde5e4a3362b68.dll.exp","C:\\RustProjects\\AiRust\\target\\debug\\deps\\bytemuck_derive-14fde5e4a3362b68.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cc@1.2.59","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cc-1.2.59\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cc","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cc-1.2.59\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["parallel"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libcc-640f29ebfa2024d9.rlib","C:\\RustProjects\\AiRust\\target\\debug\\deps\\libcc-640f29ebfa2024d9.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\displaydoc-0.2.5\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"displaydoc","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\displaydoc-0.2.5\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\displaydoc-481cd7bfea59c13a.dll","C:\\RustProjects\\AiRust\\target\\debug\\deps\\displaydoc-481cd7bfea59c13a.dll.lib","C:\\RustProjects\\AiRust\\target\\debug\\deps\\displaydoc-481cd7bfea59c13a.dll.exp","C:\\RustProjects\\AiRust\\target\\debug\\deps\\displaydoc-481cd7bfea59c13a.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures-macro@0.3.32","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-macro-0.3.32\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"futures_macro","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-macro-0.3.32\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\futures_macro-d0c2773f66fb95bf.dll","C:\\RustProjects\\AiRust\\target\\debug\\deps\\futures_macro-d0c2773f66fb95bf.dll.lib","C:\\RustProjects\\AiRust\\target\\debug\\deps\\futures_macro-d0c2773f66fb95bf.dll.exp","C:\\RustProjects\\AiRust\\target\\debug\\deps\\futures_macro-d0c2773f66fb95bf.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.8.48","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerocopy-0.8.48\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zerocopy","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerocopy-0.8.48\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["simd"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libzerocopy-d4322fd0e77937d9.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#crypto-common@0.1.7","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crypto-common-0.1.7\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"crypto_common","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crypto-common-0.1.7\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libcrypto_common-eca1d6c6a6372e40.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.8.48","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\zerocopy-3682ee7f9787793a\\out"}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_msvc@0.52.6","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows_x86_64_msvc-0.52.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_x86_64_msvc","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows_x86_64_msvc-0.52.6\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libwindows_x86_64_msvc-0eab875a340cafdc.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#phf_generator@0.13.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf_generator-0.13.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"phf_generator","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf_generator-0.13.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libphf_generator-111f6ee67736b8ca.rlib","C:\\RustProjects\\AiRust\\target\\debug\\deps\\libphf_generator-111f6ee67736b8ca.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.5.0","linked_libs":[],"linked_paths":[],"cfgs":["stable_arm_crc32_intrinsics"],"env":[],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\crc32fast-9c2aa0df2c773164\\out"}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#crypto-common@0.1.7","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crypto-common-0.1.7\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"crypto_common","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crypto-common-0.1.7\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libcrypto_common-eca1d6c6a6372e40.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#writeable@0.6.3","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\writeable-0.6.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"writeable","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\writeable-0.6.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libwriteable-b6b647f06e58c236.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#simd-adler32@0.3.9","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\simd-adler32-0.3.9\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"simd_adler32","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\simd-adler32-0.3.9\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["const-generics","default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libsimd_adler32-77c1681fcfdd8df3.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#httparse@1.10.1","linked_libs":[],"linked_paths":[],"cfgs":["httparse_simd_neon_intrinsics","httparse_simd"],"env":[],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\httparse-2c652abd85dc21ee\\out"}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#utf8_iter@1.0.4","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\utf8_iter-1.0.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"utf8_iter","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\utf8_iter-1.0.4\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libutf8_iter-1b80a6801e47035d.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_properties_data@2.2.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_properties_data-2.2.0\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_properties_data-2.2.0\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\icu_properties_data-cd63a06a3e531c28\\build-script-build.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\icu_properties_data-cd63a06a3e531c28\\build_script_build.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_normalizer_data@2.2.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_normalizer_data-2.2.0\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_normalizer_data-2.2.0\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\icu_normalizer_data-96a52fd262d0f4c6\\build-script-build.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\icu_normalizer_data-96a52fd262d0f4c6\\build_script_build.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#fs_extra@1.3.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\fs_extra-1.3.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"fs_extra","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\fs_extra-1.3.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libfs_extra-943f1a617ed9d555.rlib","C:\\RustProjects\\AiRust\\target\\debug\\deps\\libfs_extra-943f1a617ed9d555.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.5.0","linked_libs":[],"linked_paths":[],"cfgs":["stable_arm_crc32_intrinsics"],"env":[],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\crc32fast-9c2aa0df2c773164\\out"}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#bytemuck@1.25.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\bytemuck-1.25.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"bytemuck","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\bytemuck-1.25.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["bytemuck_derive","derive","extern_crate_alloc","min_const_generics"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libbytemuck-8b188a4ba563e9b4.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zerofrom-derive@0.1.7","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerofrom-derive-0.1.7\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"zerofrom_derive","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerofrom-derive-0.1.7\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\zerofrom_derive-d0a304c59c9dcb2d.dll","C:\\RustProjects\\AiRust\\target\\debug\\deps\\zerofrom_derive-d0a304c59c9dcb2d.dll.lib","C:\\RustProjects\\AiRust\\target\\debug\\deps\\zerofrom_derive-d0a304c59c9dcb2d.dll.exp","C:\\RustProjects\\AiRust\\target\\debug\\deps\\zerofrom_derive-d0a304c59c9dcb2d.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#yoke-derive@0.8.2","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\yoke-derive-0.8.2\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"yoke_derive","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\yoke-derive-0.8.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\yoke_derive-d8502784c7bdd00d.dll","C:\\RustProjects\\AiRust\\target\\debug\\deps\\yoke_derive-d8502784c7bdd00d.dll.lib","C:\\RustProjects\\AiRust\\target\\debug\\deps\\yoke_derive-d8502784c7bdd00d.dll.exp","C:\\RustProjects\\AiRust\\target\\debug\\deps\\yoke_derive-d8502784c7bdd00d.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tokio@1.51.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tokio-1.51.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tokio","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tokio-1.51.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["bytes","default","fs","full","io-std","io-util","libc","macros","mio","net","parking_lot","process","rt","rt-multi-thread","signal","signal-hook-registry","socket2","sync","time","tokio-macros","windows-sys"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libtokio-9e05ecfd2f5ec3ee.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#bytemuck@1.25.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\bytemuck-1.25.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"bytemuck","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\bytemuck-1.25.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["bytemuck_derive","derive","extern_crate_alloc","min_const_generics"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libbytemuck-8b188a4ba563e9b4.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.52.6","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-targets-0.52.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_targets","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-targets-0.52.6\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libwindows_targets-feb0185103ed2597.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.32","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-util-0.3.32\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures_util","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-util-0.3.32\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","async-await","async-await-macro","channel","futures-channel","futures-io","futures-macro","futures-sink","io","memchr","sink","slab","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libfutures_util-a0ef4affe24d05ee.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.8.48","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerocopy-0.8.48\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zerocopy","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerocopy-0.8.48\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["simd"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libzerocopy-d4322fd0e77937d9.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cmake@0.1.58","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cmake-0.1.58\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cmake","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cmake-0.1.58\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libcmake-f665a7899467f014.rlib","C:\\RustProjects\\AiRust\\target\\debug\\deps\\libcmake-f665a7899467f014.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#fs_extra@1.3.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\fs_extra-1.3.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"fs_extra","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\fs_extra-1.3.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libfs_extra-943f1a617ed9d555.rlib","C:\\RustProjects\\AiRust\\target\\debug\\deps\\libfs_extra-943f1a617ed9d555.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#utf8_iter@1.0.4","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\utf8_iter-1.0.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"utf8_iter","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\utf8_iter-1.0.4\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libutf8_iter-1b80a6801e47035d.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#dunce@1.0.5","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dunce-1.0.5\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"dunce","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dunce-1.0.5\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libdunce-5ab542988ccbd109.rlib","C:\\RustProjects\\AiRust\\target\\debug\\deps\\libdunce-5ab542988ccbd109.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_properties_data@2.2.0","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\icu_properties_data-7b1353f86d4d36da\\out"}
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_normalizer_data@2.2.0","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\icu_normalizer_data-fcc13466500a304d\\out"}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_properties_data@2.2.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_properties_data-2.2.0\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_properties_data-2.2.0\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\icu_properties_data-cd63a06a3e531c28\\build-script-build.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\icu_properties_data-cd63a06a3e531c28\\build_script_build.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_normalizer_data@2.2.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_normalizer_data-2.2.0\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_normalizer_data-2.2.0\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\icu_normalizer_data-96a52fd262d0f4c6\\build-script-build.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\icu_normalizer_data-96a52fd262d0f4c6\\build_script_build.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#httparse@1.10.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\httparse-1.10.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"httparse","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\httparse-1.10.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libhttparse-0e4d88e0b7e28006.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.5.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crc32fast-1.5.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"crc32fast","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crc32fast-1.5.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libcrc32fast-c499d92fff53c98d.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.7","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerofrom-0.1.7\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zerofrom","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerofrom-0.1.7\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["derive"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libzerofrom-28cf8e2be023c0be.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_properties_data@2.2.0","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\icu_properties_data-7b1353f86d4d36da\\out"}
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_normalizer_data@2.2.0","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\icu_normalizer_data-fcc13466500a304d\\out"}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#aws-lc-sys@0.40.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\aws-lc-sys-0.40.0\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-main","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\aws-lc-sys-0.40.0\\builder\\main.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["prebuilt-nasm"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\aws-lc-sys-d5e81467dbdb0ca7\\build-script-main.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\aws-lc-sys-d5e81467dbdb0ca7\\build_script_main.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\http-body-1.0.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"http_body","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\http-body-1.0.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libhttp_body-483a6895fd76c6e6.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#adler2@2.0.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\adler2-2.0.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"adler2","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\adler2-2.0.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libadler2-4d1a9ab780c8901d.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#khronos_api@3.1.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\khronos_api-3.1.0\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\khronos_api-3.1.0\\build.rs","edition":"2015","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\khronos_api-827beb72ffd75953\\build-script-build.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\khronos_api-827beb72ffd75953\\build_script_build.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_msvc@0.52.6","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows_x86_64_msvc-0.52.6\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows_x86_64_msvc-0.52.6\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\windows_x86_64_msvc-d70364700e1c05c8\\build-script-build.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\windows_x86_64_msvc-d70364700e1c05c8\\build_script_build.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.2","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zeroize-1.8.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zeroize","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zeroize-1.8.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libzeroize-cc2d6ced21dd28e3.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.7","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerofrom-0.1.7\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zerofrom","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerofrom-0.1.7\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["derive"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libzerofrom-28cf8e2be023c0be.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#aws-lc-sys@0.40.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\aws-lc-sys-0.40.0\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-main","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\aws-lc-sys-0.40.0\\builder\\main.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["prebuilt-nasm"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\aws-lc-sys-d5e81467dbdb0ca7\\build-script-main.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\aws-lc-sys-d5e81467dbdb0ca7\\build_script_main.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_msvc@0.52.6","linked_libs":[],"linked_paths":["native=C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows_x86_64_msvc-0.52.6\\lib"],"cfgs":[],"env":[],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\windows_x86_64_msvc-b76b1035c894b0c1\\out"}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_properties_data@2.2.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_properties_data-2.2.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"icu_properties_data","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_properties_data-2.2.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libicu_properties_data-7ef5f4f6cfd0040d.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#miniz_oxide@0.8.9","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\miniz_oxide-0.8.9\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"miniz_oxide","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\miniz_oxide-0.8.9\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","simd","simd-adler32","with-alloc"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libminiz_oxide-9bce9b019bf3af79.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_normalizer_data@2.2.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_normalizer_data-2.2.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"icu_normalizer_data","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_normalizer_data-2.2.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libicu_normalizer_data-86db14d19eb4d4fb.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#khronos_api@3.1.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\khronos_api-3.1.0\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\khronos_api-3.1.0\\build.rs","edition":"2015","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\khronos_api-827beb72ffd75953\\build-script-build.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\khronos_api-827beb72ffd75953\\build_script_build.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tokio-util@0.7.18","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tokio-util-0.7.18\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tokio_util","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tokio-util-0.7.18\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["codec","default","io"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libtokio_util-a50243d922c49a43.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#khronos_api@3.1.0","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\khronos_api-b17638c83664ebe3\\out"}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\num-traits-0.2.19\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\num-traits-0.2.19\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\num-traits-0c1bbd063d5fc726\\build-script-build.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\num-traits-0c1bbd063d5fc726\\build_script_build.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zlib-rs@0.6.3","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zlib-rs-0.6.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zlib_rs","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zlib-rs-0.6.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["rust-allocator","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libzlib_rs-2b1bfa6c52d2fed1.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tower-service-0.3.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tower_service","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tower-service-0.3.3\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libtower_service-0b0b060d8cc51a8b.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_core-1.0.228\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_core-1.0.228\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","result","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\serde_core-73d152b7ceda14db\\build-script-build.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\serde_core-73d152b7ceda14db\\build_script_build.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zlib-rs@0.6.3","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zlib-rs-0.6.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zlib_rs","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zlib-rs-0.6.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["rust-allocator","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libzlib_rs-2b1bfa6c52d2fed1.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cfg_aliases@0.2.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cfg_aliases-0.2.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cfg_aliases","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cfg_aliases-0.2.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libcfg_aliases-73f2df284dc264d5.rlib","C:\\RustProjects\\AiRust\\target\\debug\\deps\\libcfg_aliases-73f2df284dc264d5.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.14.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rustls-pki-types-1.14.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rustls_pki_types","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rustls-pki-types-1.14.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\librustls_pki_types-d00a8793b9a759cd.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tower-service-0.3.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tower_service","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tower-service-0.3.3\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libtower_service-0b0b060d8cc51a8b.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#block-buffer@0.10.4","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\block-buffer-0.10.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"block_buffer","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\block-buffer-0.10.4\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libblock_buffer-dea4f535dcb9ceb3.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#form_urlencoded@1.2.2","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\form_urlencoded-1.2.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"form_urlencoded","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\form_urlencoded-1.2.2\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libform_urlencoded-7832b285492917de.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#yoke@0.8.2","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\yoke-0.8.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"yoke","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\yoke-0.8.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["derive","zerofrom"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libyoke-c2e0fe244ea950ff.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#aws-lc-sys@0.40.0","linked_libs":["static=aws_lc_0_40_0_crypto"],"linked_paths":["native=C:\\RustProjects\\AiRust\\target\\debug\\build\\aws-lc-sys-4d7bdc8fef521c60\\out"],"cfgs":["universal"],"env":[],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\aws-lc-sys-4d7bdc8fef521c60\\out"}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#khronos_api@3.1.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\khronos_api-3.1.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"khronos_api","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\khronos_api-3.1.0\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libkhronos_api-83dbb4f09085a608.rlib","C:\\RustProjects\\AiRust\\target\\debug\\deps\\libkhronos_api-83dbb4f09085a608.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\serde_core-43f25cc06402f139\\out"}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_properties_data@2.2.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_properties_data-2.2.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"icu_properties_data","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_properties_data-2.2.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libicu_properties_data-7ef5f4f6cfd0040d.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#khronos_api@3.1.0","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\khronos_api-b17638c83664ebe3\\out"}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#miniz_oxide@0.8.9","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\miniz_oxide-0.8.9\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"miniz_oxide","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\miniz_oxide-0.8.9\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","simd","simd-adler32","with-alloc"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libminiz_oxide-9bce9b019bf3af79.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_normalizer_data@2.2.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_normalizer_data-2.2.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"icu_normalizer_data","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_normalizer_data-2.2.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libicu_normalizer_data-86db14d19eb4d4fb.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19","linked_libs":[],"linked_paths":[],"cfgs":["has_total_cmp"],"env":[],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\num-traits-0525faec4b5fe19d\\out"}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_msvc@0.52.6","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows_x86_64_msvc-0.52.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_x86_64_msvc","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows_x86_64_msvc-0.52.6\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libwindows_x86_64_msvc-0eab875a340cafdc.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#flate2@1.1.9","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\flate2-1.1.9\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"flate2","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\flate2-1.1.9\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["any_impl","any_zlib","default","miniz_oxide","rust_backend","zlib-rs"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libflate2-967c82f31add9216.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#atomic-waker@1.1.2","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\atomic-waker-1.1.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"atomic_waker","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\atomic-waker-1.1.2\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libatomic_waker-bc8419b62445f532.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\base64-0.22.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"base64","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\base64-0.22.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libbase64-8e3d103993551ef3.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#log@0.4.29","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\log-0.4.29\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"log","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\log-0.4.29\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\liblog-03a369c45b3c339d.rlib","C:\\RustProjects\\AiRust\\target\\debug\\deps\\liblog-03a369c45b3c339d.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#libc@0.2.184","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\libc-0.2.184\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\libc-0.2.184\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\libc-04f08d17797348ca\\build-script-build.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\libc-04f08d17797348ca\\build_script_build.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#httpdate@1.0.3","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\httpdate-1.0.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"httpdate","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\httpdate-1.0.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libhttpdate-6af6275149057790.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#aws-lc-rs@1.16.3","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\aws-lc-rs-1.16.3\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\aws-lc-rs-1.16.3\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["aws-lc-sys","prebuilt-nasm"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\aws-lc-rs-5f1a66757532920f\\build-script-build.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\aws-lc-rs-5f1a66757532920f\\build_script_build.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\fnv-1.0.7\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"fnv","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\fnv-1.0.7\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libfnv-a2dd95a39aae649a.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.14.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rustls-pki-types-1.14.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rustls_pki_types","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rustls-pki-types-1.14.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\librustls_pki_types-d00a8793b9a759cd.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\serde_core-43f25cc06402f139\\out"}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#form_urlencoded@1.2.2","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\form_urlencoded-1.2.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"form_urlencoded","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\form_urlencoded-1.2.2\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libform_urlencoded-7832b285492917de.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#encoding_rs@0.8.35","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\encoding_rs-0.8.35\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"encoding_rs","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\encoding_rs-0.8.35\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libencoding_rs-15b7121df0097a84.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#xml-rs@0.8.28","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\xml-rs-0.8.28\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"xml","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\xml-rs-0.8.28\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libxml-bc55d2f5b0a69a0d.rlib","C:\\RustProjects\\AiRust\\target\\debug\\deps\\libxml-bc55d2f5b0a69a0d.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#try-lock@0.2.5","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\try-lock-0.2.5\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"try_lock","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\try-lock-0.2.5\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libtry_lock-e5b1dbb23ca1d86b.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#libc@0.2.184","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\libc-0.2.184\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\libc-0.2.184\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\libc-04f08d17797348ca\\build-script-build.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\libc-04f08d17797348ca\\build_script_build.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\base64-0.22.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"base64","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\base64-0.22.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libbase64-8e3d103993551ef3.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#atomic-waker@1.1.2","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\atomic-waker-1.1.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"atomic_waker","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\atomic-waker-1.1.2\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libatomic_waker-bc8419b62445f532.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zerovec@0.11.6","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerovec-0.11.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zerovec","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerovec-0.11.6\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["derive","yoke"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libzerovec-026c63eaa68c0f99.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zerotrie@0.2.4","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerotrie-0.2.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zerotrie","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerotrie-0.2.4\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["yoke","zerofrom"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libzerotrie-4c5d7dca54a2f1d8.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#arrayvec@0.7.6","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\arrayvec-0.7.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"arrayvec","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\arrayvec-0.7.6\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libarrayvec-c9b8ed7bd1f2246e.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#khronos_api@3.1.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\khronos_api-3.1.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"khronos_api","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\khronos_api-3.1.0\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libkhronos_api-83dbb4f09085a608.rlib","C:\\RustProjects\\AiRust\\target\\debug\\deps\\libkhronos_api-83dbb4f09085a608.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#flate2@1.1.9","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\flate2-1.1.9\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"flate2","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\flate2-1.1.9\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["any_impl","any_zlib","default","miniz_oxide","rust_backend","zlib-rs"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libflate2-967c82f31add9216.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#try-lock@0.2.5","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\try-lock-0.2.5\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"try_lock","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\try-lock-0.2.5\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libtry_lock-e5b1dbb23ca1d86b.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\fnv-1.0.7\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"fnv","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\fnv-1.0.7\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libfnv-a2dd95a39aae649a.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#aws-lc-rs@1.16.3","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\aws-lc-rs-1.16.3\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\aws-lc-rs-1.16.3\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["aws-lc-sys","prebuilt-nasm"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\aws-lc-rs-5f1a66757532920f\\build-script-build.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\aws-lc-rs-5f1a66757532920f\\build_script_build.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#httpdate@1.0.3","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\httpdate-1.0.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"httpdate","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\httpdate-1.0.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libhttpdate-6af6275149057790.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#log@0.4.29","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\log-0.4.29\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"log","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\log-0.4.29\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\liblog-03a369c45b3c339d.rlib","C:\\RustProjects\\AiRust\\target\\debug\\deps\\liblog-03a369c45b3c339d.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.18","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\thiserror-2.0.18\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\thiserror-2.0.18\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\thiserror-f4d6322d70c52f5c\\build-script-build.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\thiserror-f4d6322d70c52f5c\\build_script_build.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_core-1.0.228\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serde_core","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_core-1.0.228\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","result","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libserde_core-c52937ef7d7f0623.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#gl_generator@0.14.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\gl_generator-0.14.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"gl_generator","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\gl_generator-0.14.0\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libgl_generator-c69ff907c9c5f0b0.rlib","C:\\RustProjects\\AiRust\\target\\debug\\deps\\libgl_generator-c69ff907c9c5f0b0.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#aws-lc-rs@1.16.3","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\aws-lc-rs-0c5fff5c2389d6a8\\out"}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#want@0.3.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\want-0.3.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"want","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\want-0.3.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libwant-26d30de424364d5a.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#libc@0.2.184","linked_libs":[],"linked_paths":[],"cfgs":["freebsd12"],"env":[],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\libc-a6596adfbad7cccc\\out"}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\num-traits-0.2.19\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"num_traits","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\num-traits-0.2.19\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libnum_traits-e5f90ad4f4915521.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.52.6","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-targets-0.52.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_targets","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-targets-0.52.6\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libwindows_targets-feb0185103ed2597.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#h2@0.4.13","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\h2-0.4.13\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"h2","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\h2-0.4.13\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libh2-4cfa84526f1f9eaf.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_core-1.0.228\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serde_core","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_core-1.0.228\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","result","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libserde_core-c52937ef7d7f0623.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#libc@0.2.184","linked_libs":[],"linked_paths":[],"cfgs":["freebsd12"],"env":[],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\libc-a6596adfbad7cccc\\out"}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\digest-0.10.7\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"digest","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\digest-0.10.7\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","block-buffer","core-api","default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libdigest-bd12e59d9687aa2d.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#phf_codegen@0.13.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf_codegen-0.13.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"phf_codegen","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf_codegen-0.13.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libphf_codegen-ccf1a9a258788643.rlib","C:\\RustProjects\\AiRust\\target\\debug\\deps\\libphf_codegen-ccf1a9a258788643.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@2.0.18","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\thiserror-impl-2.0.18\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"thiserror_impl","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\thiserror-impl-2.0.18\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\thiserror_impl-f8058c08bfd6e403.dll","C:\\RustProjects\\AiRust\\target\\debug\\deps\\thiserror_impl-f8058c08bfd6e403.dll.lib","C:\\RustProjects\\AiRust\\target\\debug\\deps\\thiserror_impl-f8058c08bfd6e403.dll.exp","C:\\RustProjects\\AiRust\\target\\debug\\deps\\thiserror_impl-f8058c08bfd6e403.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-strings@0.5.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-strings-0.5.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_strings","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-strings-0.5.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libwindows_strings-f17df2e9b3268bf4.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tinystr@0.8.3","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tinystr-0.8.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tinystr","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tinystr-0.8.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["zerovec"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libtinystr-8f43d9271925cb93.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#potential_utf@0.1.5","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\potential_utf-0.1.5\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"potential_utf","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\potential_utf-0.1.5\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["zerovec"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libpotential_utf-2780f2c35199eb15.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#h2@0.4.13","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\h2-0.4.13\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"h2","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\h2-0.4.13\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libh2-4cfa84526f1f9eaf.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#gl_generator@0.14.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\gl_generator-0.14.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"gl_generator","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\gl_generator-0.14.0\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libgl_generator-c69ff907c9c5f0b0.rlib","C:\\RustProjects\\AiRust\\target\\debug\\deps\\libgl_generator-c69ff907c9c5f0b0.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#aws-lc-rs@1.16.3","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\aws-lc-rs-0c5fff5c2389d6a8\\out"}
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.18","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\thiserror-e196c11b7df54c50\\out"}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#polycool@0.4.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\polycool-0.4.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"polycool","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\polycool-0.4.0\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libpolycool-606d367eec191032.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#want@0.3.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\want-0.3.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"want","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\want-0.3.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libwant-26d30de424364d5a.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@2.0.18","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\thiserror-impl-2.0.18\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"thiserror_impl","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\thiserror-impl-2.0.18\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\thiserror_impl-f8058c08bfd6e403.dll","C:\\RustProjects\\AiRust\\target\\debug\\deps\\thiserror_impl-f8058c08bfd6e403.dll.lib","C:\\RustProjects\\AiRust\\target\\debug\\deps\\thiserror_impl-f8058c08bfd6e403.dll.exp","C:\\RustProjects\\AiRust\\target\\debug\\deps\\thiserror_impl-f8058c08bfd6e403.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-strings@0.5.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-strings-0.5.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_strings","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-strings-0.5.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libwindows_strings-f17df2e9b3268bf4.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-result@0.4.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-result-0.4.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_result","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-result-0.4.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libwindows_result-5ca89e770b3aaf3c.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#siphasher@1.0.3","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\siphasher-1.0.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"siphasher","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\siphasher-1.0.3\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libsiphasher-0758673c61d0e4bb.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#untrusted@0.9.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\untrusted-0.9.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"untrusted","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\untrusted-0.9.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libuntrusted-3cb84ff640183e9d.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.2.17","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cpufeatures-0.2.17\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cpufeatures","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cpufeatures-0.2.17\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libcpufeatures-cb84bc976b1f9d88.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#siphasher@1.0.3","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\siphasher-1.0.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"siphasher","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\siphasher-1.0.3\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libsiphasher-0758673c61d0e4bb.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#libc@0.2.184","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\libc-0.2.184\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"libc","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\libc-0.2.184\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\liblibc-bd05a9f08ecaada5.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#hyper@1.9.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hyper-1.9.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hyper","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hyper-1.9.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["client","default","http1","http2","server"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libhyper-19ecf04d14d5307a.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#aws-lc-sys@0.40.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\aws-lc-sys-0.40.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"aws_lc_sys","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\aws-lc-sys-0.40.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["prebuilt-nasm"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libaws_lc_sys-cb43c9a2754bd94a.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_locale_core@2.2.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_locale_core-2.2.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"icu_locale_core","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_locale_core-2.2.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["zerovec"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libicu_locale_core-2663bbbeaa566005.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_collections@2.2.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_collections-2.2.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"icu_collections","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_collections-2.2.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libicu_collections-71a3cb7fd4f71e2e.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-registry@0.6.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-registry-0.6.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_registry","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-registry-0.6.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libwindows_registry-8d8db6b9da911373.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.18","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\thiserror-2.0.18\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"thiserror","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\thiserror-2.0.18\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libthiserror-4cf53c702d39f463.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#hyper@1.9.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hyper-1.9.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hyper","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hyper-1.9.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["client","default","http1","http2","server"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libhyper-19ecf04d14d5307a.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#phf_shared@0.13.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf_shared-0.13.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"phf_shared","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf_shared-0.13.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libphf_shared-376c1841e39b7dd7.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#color@0.3.3","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\color-0.3.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"color","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\color-0.3.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["bytemuck","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libcolor-5b70b071569c815e.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#block-padding@0.3.3","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\block-padding-0.3.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"block_padding","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\block-padding-0.3.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libblock_padding-31a152da2bef3c97.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.4","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\getrandom-0.3.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"getrandom","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\getrandom-0.3.4\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libgetrandom-fde8a7e5e655e283.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zmij@1.0.21","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zmij-1.0.21\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zmij-1.0.21\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\zmij-bbaef9d295c9b9a4\\build-script-build.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\zmij-bbaef9d295c9b9a4\\build_script_build.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#mime@0.3.17","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\mime-0.3.17\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"mime","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\mime-0.3.17\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libmime-b38b8ff46093bf61.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_locale_core@2.2.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_locale_core-2.2.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"icu_locale_core","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_locale_core-2.2.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["zerovec"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libicu_locale_core-2663bbbeaa566005.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_collections@2.2.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_collections-2.2.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"icu_collections","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_collections-2.2.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libicu_collections-71a3cb7fd4f71e2e.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#phf_shared@0.13.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf_shared-0.13.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"phf_shared","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf_shared-0.13.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libphf_shared-376c1841e39b7dd7.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-registry@0.6.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-registry-0.6.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_registry","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-registry-0.6.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libwindows_registry-8d8db6b9da911373.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#kurbo@0.13.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\kurbo-0.13.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"kurbo","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\kurbo-0.13.1\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libkurbo-690bdf96d2256c12.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.18","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\thiserror-2.0.18\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"thiserror","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\thiserror-2.0.18\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libthiserror-4cf53c702d39f463.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ipnet@2.12.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ipnet-2.12.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ipnet","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ipnet-2.12.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libipnet-5257567803349912.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#linebender_resource_handle@0.1.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\linebender_resource_handle-0.1.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"linebender_resource_handle","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\linebender_resource_handle-0.1.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\liblinebender_resource_handle-8670c0bef9431a29.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde-1.0.228\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde-1.0.228\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","derive","serde_derive","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\serde-cdb2584a7192e2fc\\build-script-build.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\serde-cdb2584a7192e2fc\\build_script_build.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#zmij@1.0.21","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\zmij-08aed8c3c171b8b1\\out"}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#inout@0.1.4","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\inout-0.1.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"inout","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\inout-0.1.4\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["block-padding"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libinout-b9ab7a1351beb6c8.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zmij@1.0.21","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zmij-1.0.21\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zmij-1.0.21\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\zmij-bbaef9d295c9b9a4\\build-script-build.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\zmij-bbaef9d295c9b9a4\\build_script_build.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#linebender_resource_handle@0.1.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\linebender_resource_handle-0.1.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"linebender_resource_handle","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\linebender_resource_handle-0.1.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\liblinebender_resource_handle-8670c0bef9431a29.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#mime@0.3.17","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\mime-0.3.17\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"mime","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\mime-0.3.17\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libmime-b38b8ff46093bf61.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ipnet@2.12.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ipnet-2.12.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ipnet","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ipnet-2.12.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libipnet-5257567803349912.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tinyvec_macros@0.1.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tinyvec_macros-0.1.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tinyvec_macros","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tinyvec_macros-0.1.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libtinyvec_macros-cad25bee4deda792.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_provider@2.2.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_provider-2.2.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"icu_provider","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_provider-2.2.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["baked"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libicu_provider-98838a2030fb8a90.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tinyvec@1.11.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tinyvec-1.11.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tinyvec","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tinyvec-1.11.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","tinyvec_macros"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libtinyvec-34aa8959df032b67.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rand_core@0.9.5","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rand_core-0.9.5\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rand_core","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rand_core-0.9.5\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["os_rng","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\librand_core-6db9a1c28e3abde6.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.20","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hyper-util-0.1.20\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hyper_util","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hyper-util-0.1.20\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["client","client-legacy","client-proxy","client-proxy-system","default","http1","http2","server","server-auto","service","tokio"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libhyper_util-a453eb3d0b8877ad.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#zmij@1.0.21","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\zmij-08aed8c3c171b8b1\\out"}
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228","linked_libs":[],"linked_paths":[],"cfgs":["if_docsrs_then_no_serde_core"],"env":[],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\serde-00f8739e3640a468\\out"}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#inout@0.1.4","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\inout-0.1.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"inout","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\inout-0.1.4\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["block-padding"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libinout-b9ab7a1351beb6c8.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#aws-lc-rs@1.16.3","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\aws-lc-rs-1.16.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"aws_lc_rs","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\aws-lc-rs-1.16.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["aws-lc-sys","prebuilt-nasm"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libaws_lc_rs-9825e6216e315388.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#http-body-util@0.1.3","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\http-body-util-0.1.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"http_body_util","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\http-body-util-0.1.3\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libhttp_body_util-daf6a6ba9356a296.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#fearless_simd@0.3.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\fearless_simd-0.3.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"fearless_simd","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\fearless_simd-0.3.0\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libfearless_simd-50b63a87f4002d9e.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#font-types@0.11.3","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\font-types-0.11.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"font_types","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\font-types-0.11.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["bytemuck","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libfont_types-062a0da1e86eb975.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_provider@2.2.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_provider-2.2.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"icu_provider","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_provider-2.2.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["baked"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libicu_provider-98838a2030fb8a90.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#peniko@0.6.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\peniko-0.6.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"peniko","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\peniko-0.6.1\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["bytemuck","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libpeniko-0671277881701607.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228","linked_libs":[],"linked_paths":[],"cfgs":["if_docsrs_then_no_serde_core"],"env":[],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\serde-00f8739e3640a468\\out"}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.20","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hyper-util-0.1.20\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hyper_util","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hyper-util-0.1.20\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["client","client-legacy","client-proxy","client-proxy-system","default","http1","http2","server","server-auto","service","tokio"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libhyper_util-a453eb3d0b8877ad.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#phf_macros@0.13.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf_macros-0.13.1\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"phf_macros","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf_macros-0.13.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\phf_macros-93004e4173471ed2.dll","C:\\RustProjects\\AiRust\\target\\debug\\deps\\phf_macros-93004e4173471ed2.dll.lib","C:\\RustProjects\\AiRust\\target\\debug\\deps\\phf_macros-93004e4173471ed2.dll.exp","C:\\RustProjects\\AiRust\\target\\debug\\deps\\phf_macros-93004e4173471ed2.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ppv-lite86@0.2.21","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ppv-lite86-0.2.21\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ppv_lite86","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ppv-lite86-0.2.21\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["simd","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libppv_lite86-c09be73936048807.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#phf_macros@0.13.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf_macros-0.13.1\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"phf_macros","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf_macros-0.13.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\phf_macros-93004e4173471ed2.dll","C:\\RustProjects\\AiRust\\target\\debug\\deps\\phf_macros-93004e4173471ed2.dll.lib","C:\\RustProjects\\AiRust\\target\\debug\\deps\\phf_macros-93004e4173471ed2.dll.exp","C:\\RustProjects\\AiRust\\target\\debug\\deps\\phf_macros-93004e4173471ed2.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.228","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_derive-1.0.228\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"serde_derive","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_derive-1.0.228\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\serde_derive-5f958763fb0157ff.dll","C:\\RustProjects\\AiRust\\target\\debug\\deps\\serde_derive-5f958763fb0157ff.dll.lib","C:\\RustProjects\\AiRust\\target\\debug\\deps\\serde_derive-5f958763fb0157ff.dll.exp","C:\\RustProjects\\AiRust\\target\\debug\\deps\\serde_derive-5f958763fb0157ff.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#sync_wrapper@1.0.2","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\sync_wrapper-1.0.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"sync_wrapper","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\sync_wrapper-1.0.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["futures","futures-core"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libsync_wrapper-99d0e1101c458ffe.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ahash@0.8.12","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ahash-0.8.12\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ahash-0.8.12\\build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["no-rng","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\ahash-873e063c1c9b9af5\\build-script-build.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\ahash-873e063c1c9b9af5\\build_script_build.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.149","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_json-1.0.149\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_json-1.0.149\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","indexmap","preserve_order","raw_value","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\serde_json-ffd9ab7315d0f7af\\build-script-build.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\serde_json-ffd9ab7315d0f7af\\build_script_build.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tower-layer@0.3.3","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tower-layer-0.3.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tower_layer","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tower-layer-0.3.3\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libtower_layer-9e47e6698187b0f4.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#new_debug_unreachable@1.0.6","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\new_debug_unreachable-1.0.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"debug_unreachable","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\new_debug_unreachable-1.0.6\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libdebug_unreachable-336ec27e8f123d6f.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unicase@2.9.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicase-2.9.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unicase","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicase-2.9.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libunicase-56e4149d78cd5dc1.rlib","C:\\RustProjects\\AiRust\\target\\debug\\deps\\libunicase-56e4149d78cd5dc1.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crossbeam-utils-0.8.21\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crossbeam-utils-0.8.21\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\crossbeam-utils-77d5ddf9766cba70\\build-script-build.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\crossbeam-utils-77d5ddf9766cba70\\build_script_build.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.37","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rustls-0.23.37\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rustls-0.23.37\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["aws-lc-rs","aws_lc_rs","std","tls12"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\rustls-d5305144858b4b47\\build-script-build.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\rustls-d5305144858b4b47\\build_script_build.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#read-fonts@0.37.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\read-fonts-0.37.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"read_fonts","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\read-fonts-0.37.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libread_fonts-ba16dad8fd8bd9cf.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_properties@2.2.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_properties-2.2.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"icu_properties","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_properties-2.2.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["compiled_data"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libicu_properties-7fa57ecc93cf68a2.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_normalizer@2.2.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_normalizer-2.2.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"icu_normalizer","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_normalizer-2.2.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["compiled_data"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libicu_normalizer-1c69f00f01de9251.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ahash@0.8.12","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ahash-0.8.12\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ahash-0.8.12\\build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["no-rng","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\ahash-873e063c1c9b9af5\\build-script-build.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\ahash-873e063c1c9b9af5\\build_script_build.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#new_debug_unreachable@1.0.6","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\new_debug_unreachable-1.0.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"debug_unreachable","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\new_debug_unreachable-1.0.6\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libdebug_unreachable-336ec27e8f123d6f.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.149","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_json-1.0.149\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_json-1.0.149\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","indexmap","preserve_order","raw_value","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\serde_json-ffd9ab7315d0f7af\\build-script-build.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\serde_json-ffd9ab7315d0f7af\\build_script_build.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crossbeam-utils-0.8.21\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crossbeam-utils-0.8.21\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\crossbeam-utils-77d5ddf9766cba70\\build-script-build.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\crossbeam-utils-77d5ddf9766cba70\\build_script_build.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.37","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rustls-0.23.37\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rustls-0.23.37\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["aws-lc-rs","aws_lc_rs","std","tls12"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\rustls-d5305144858b4b47\\build-script-build.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\rustls-d5305144858b4b47\\build_script_build.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tower-layer@0.3.3","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tower-layer-0.3.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tower_layer","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tower-layer-0.3.3\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libtower_layer-9e47e6698187b0f4.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unicase@2.9.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicase-2.9.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unicase","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicase-2.9.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libunicase-56e4149d78cd5dc1.rlib","C:\\RustProjects\\AiRust\\target\\debug\\deps\\libunicase-56e4149d78cd5dc1.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cipher@0.4.4","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cipher-0.4.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cipher","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cipher-0.4.4\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["block-padding"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libcipher-e2800ccc8d68bd09.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rand_chacha@0.9.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rand_chacha-0.9.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rand_chacha","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rand_chacha-0.9.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\librand_chacha-6b16d54b2449ebfb.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde-1.0.228\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serde","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde-1.0.228\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","derive","serde_derive","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libserde-7d2756b2244c0502.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustls-webpki@0.103.10","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rustls-webpki-0.103.10\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"webpki","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rustls-webpki-0.103.10\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","aws-lc-rs","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libwebpki-d1ed65ab38858a01.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#phf@0.13.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf-0.13.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"phf","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf-0.13.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","macros","phf_macros","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libphf-91af033b0df351f6.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#read-fonts@0.37.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\read-fonts-0.37.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"read_fonts","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\read-fonts-0.37.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libread_fonts-ba16dad8fd8bd9cf.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#idna_adapter@1.2.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\idna_adapter-1.2.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"idna_adapter","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\idna_adapter-1.2.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["compiled_data"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libidna_adapter-6835c843e8e1f195.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.149","linked_libs":[],"linked_paths":[],"cfgs":["fast_arithmetic=\"64\""],"env":[],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\serde_json-79df00154684c73e\\out"}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#mime_guess@2.0.5","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\mime_guess-2.0.5\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\mime_guess-2.0.5\\build.rs","edition":"2015","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\mime_guess-0799155b8660c885\\build-script-build.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\mime_guess-0799155b8660c885\\build_script_build.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\crossbeam-utils-8997869a55f58415\\out"}
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.149","linked_libs":[],"linked_paths":[],"cfgs":["fast_arithmetic=\"64\""],"env":[],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\serde_json-79df00154684c73e\\out"}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rand_chacha@0.9.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rand_chacha-0.9.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rand_chacha","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rand_chacha-0.9.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\librand_chacha-6b16d54b2449ebfb.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.37","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\rustls-0cdff735fb752d26\\out"}
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#ahash@0.8.12","linked_libs":[],"linked_paths":[],"cfgs":["folded_multiply"],"env":[],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\ahash-c12ac4b9411ad09b\\out"}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde-1.0.228\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serde","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde-1.0.228\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","derive","serde_derive","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libserde-7d2756b2244c0502.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#phf@0.13.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf-0.13.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"phf","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf-0.13.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","macros","phf_macros","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libphf-91af033b0df351f6.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#vello_common@0.0.6","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\vello_common-0.0.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"vello_common","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\vello_common-0.0.6\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libvello_common-d26193fb3815a88b.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cipher@0.4.4","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cipher-0.4.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cipher","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cipher-0.4.4\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["block-padding"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libcipher-e2800ccc8d68bd09.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.37","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\rustls-0cdff735fb752d26\\out"}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zmij@1.0.21","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zmij-1.0.21\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zmij","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zmij-1.0.21\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libzmij-7fc836199593576b.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustls-webpki@0.103.10","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rustls-webpki-0.103.10\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"webpki","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rustls-webpki-0.103.10\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","aws-lc-rs","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libwebpki-d1ed65ab38858a01.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-sys-0.52.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_sys","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-sys-0.52.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["Win32","Win32_Devices","Win32_Devices_HumanInterfaceDevice","Win32_Foundation","Win32_Globalization","Win32_Graphics","Win32_Graphics_Dwm","Win32_Graphics_Gdi","Win32_Graphics_OpenGL","Win32_Media","Win32_Security","Win32_System","Win32_System_Com","Win32_System_Com_StructuredStorage","Win32_System_LibraryLoader","Win32_System_Ole","Win32_System_SystemInformation","Win32_System_SystemServices","Win32_System_Threading","Win32_System_WindowsProgramming","Win32_UI","Win32_UI_Accessibility","Win32_UI_Controls","Win32_UI_HiDpi","Win32_UI_Input","Win32_UI_Input_Ime","Win32_UI_Input_KeyboardAndMouse","Win32_UI_Input_Pointer","Win32_UI_Input_Touch","Win32_UI_Shell","Win32_UI_TextServices","Win32_UI_WindowsAndMessaging","default"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libwindows_sys-de6fb808d4bfe012.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#emath@0.34.2","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\emath-0.34.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"emath","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\emath-0.34.2\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["bytemuck"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libemath-f02afcb3b82c1356.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#idna_adapter@1.2.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\idna_adapter-1.2.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"idna_adapter","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\idna_adapter-1.2.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["compiled_data"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libidna_adapter-6835c843e8e1f195.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#string_cache_codegen@0.6.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\string_cache_codegen-0.6.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"string_cache_codegen","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\string_cache_codegen-0.6.1\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libstring_cache_codegen-d9bda12c32467371.rlib","C:\\RustProjects\\AiRust\\target\\debug\\deps\\libstring_cache_codegen-d9bda12c32467371.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#encoding_rs@0.8.35","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\encoding_rs-0.8.35\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"encoding_rs","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\encoding_rs-0.8.35\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libencoding_rs-15b7121df0097a84.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unicode-segmentation@1.13.2","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicode-segmentation-1.13.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unicode_segmentation","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicode-segmentation-1.13.2\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libunicode_segmentation-d9677664f25d5a57.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#native-tls@0.2.18","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\native-tls-0.2.18\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\native-tls-0.2.18\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\native-tls-33399c41462f9840\\build-script-build.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\native-tls-33399c41462f9840\\build_script_build.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tinyvec_macros@0.1.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tinyvec_macros-0.1.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tinyvec_macros","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tinyvec_macros-0.1.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libtinyvec_macros-cad25bee4deda792.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#raw-window-handle@0.6.2","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\raw-window-handle-0.6.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"raw_window_handle","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\raw-window-handle-0.6.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libraw_window_handle-22ab43a2be811957.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\subtle-2.6.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"subtle","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\subtle-2.6.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libsubtle-5ad7a16de55581a4.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unicode-segmentation@1.13.2","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicode-segmentation-1.13.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unicode_segmentation","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicode-segmentation-1.13.2\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libunicode_segmentation-d9677664f25d5a57.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#precomputed-hash@0.1.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\precomputed-hash-0.1.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"precomputed_hash","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\precomputed-hash-0.1.1\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libprecomputed_hash-0c00280e3bd64fbe.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.149","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_json-1.0.149\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serde_json","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_json-1.0.149\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","indexmap","preserve_order","raw_value","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libserde_json-3ac406f427ebd4b0.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ecolor@0.34.2","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ecolor-0.34.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ecolor","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ecolor-0.34.2\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["bytemuck"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libecolor-bcea010e4ded35a7.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#vello_cpu@0.0.6","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\vello_cpu-0.0.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"vello_cpu","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\vello_cpu-0.0.6\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["f32_pipeline","std","u8_pipeline"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libvello_cpu-7f6dd15c4a39bc15.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#mime_guess@2.0.5","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[["MIME_TYPES_GENERATED_PATH","C:\\RustProjects\\AiRust\\target\\debug\\build\\mime_guess-d679848c28f8c9b2\\out\\mime_types_generated.rs"]],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\mime_guess-d679848c28f8c9b2\\out"}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rand@0.9.2","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rand-0.9.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rand","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rand-0.9.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","os_rng","small_rng","std","std_rng","thread_rng"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\librand-1e45bf5e1ab8ab29.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ahash@0.8.12","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ahash-0.8.12\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ahash","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ahash-0.8.12\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["no-rng","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libahash-50427fdfe7bda345.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crossbeam-utils-0.8.21\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"crossbeam_utils","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crossbeam-utils-0.8.21\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libcrossbeam_utils-05fdfda46a91ad51.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\subtle-2.6.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"subtle","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\subtle-2.6.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libsubtle-5ad7a16de55581a4.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#raw-window-handle@0.6.2","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\raw-window-handle-0.6.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"raw_window_handle","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\raw-window-handle-0.6.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libraw_window_handle-22ab43a2be811957.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#idna@1.1.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\idna-1.1.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"idna","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\idna-1.1.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":false,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","compiled_data","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libidna-f33c51b2016e74de.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.37","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rustls-0.23.37\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rustls","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rustls-0.23.37\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["aws-lc-rs","aws_lc_rs","std","tls12"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\librustls-e0a385eeb1cc4217.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crossbeam-utils-0.8.21\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"crossbeam_utils","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crossbeam-utils-0.8.21\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libcrossbeam_utils-05fdfda46a91ad51.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#web_atoms@0.2.4","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\web_atoms-0.2.4\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\web_atoms-0.2.4\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\web_atoms-281a692a1817dd46\\build-script-build.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\web_atoms-281a692a1817dd46\\build_script_build.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tinyvec@1.11.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tinyvec-1.11.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tinyvec","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tinyvec-1.11.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","tinyvec_macros"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libtinyvec-34aa8959df032b67.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.149","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_json-1.0.149\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serde_json","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_json-1.0.149\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","indexmap","preserve_order","raw_value","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libserde_json-3ac406f427ebd4b0.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#mime_guess@2.0.5","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[["MIME_TYPES_GENERATED_PATH","C:\\RustProjects\\AiRust\\target\\debug\\build\\mime_guess-d679848c28f8c9b2\\out\\mime_types_generated.rs"]],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\mime_guess-d679848c28f8c9b2\\out"}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.37","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rustls-0.23.37\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rustls","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rustls-0.23.37\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["aws-lc-rs","aws_lc_rs","std","tls12"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\librustls-e0a385eeb1cc4217.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ahash@0.8.12","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ahash-0.8.12\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ahash","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ahash-0.8.12\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["no-rng","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libahash-50427fdfe7bda345.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#native-tls@0.2.18","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\native-tls-10c45e54438ca551\\out"}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#skrifa@0.40.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\skrifa-0.40.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"skrifa","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\skrifa-0.40.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["autohint_shaping","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libskrifa-2223a6c1bdf94e49.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ecolor@0.34.2","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ecolor-0.34.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ecolor","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ecolor-0.34.2\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["bytemuck"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libecolor-bcea010e4ded35a7.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rand@0.9.2","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rand-0.9.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rand","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rand-0.9.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","os_rng","small_rng","std","std_rng","thread_rng"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\librand-1e45bf5e1ab8ab29.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tower@0.5.3","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tower-0.5.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tower","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tower-0.5.3\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["futures-core","futures-util","log","make","pin-project-lite","retry","sync_wrapper","timeout","tokio","tracing","util"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libtower-a8ff961fe90045ff.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#glutin_wgl_sys@0.6.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\glutin_wgl_sys-0.6.1\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\glutin_wgl_sys-0.6.1\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\glutin_wgl_sys-48085e25bdfde147\\build-script-build.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\glutin_wgl_sys-48085e25bdfde147\\build_script_build.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#skrifa@0.40.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\skrifa-0.40.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"skrifa","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\skrifa-0.40.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["autohint_shaping","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libskrifa-2223a6c1bdf94e49.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#glutin_egl_sys@0.7.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\glutin_egl_sys-0.7.1\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\glutin_egl_sys-0.7.1\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\glutin_egl_sys-647b0ee2ce90cf5e\\build-script-build.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\glutin_egl_sys-647b0ee2ce90cf5e\\build_script_build.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#glutin_wgl_sys@0.6.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\glutin_wgl_sys-0.6.1\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\glutin_wgl_sys-0.6.1\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\glutin_wgl_sys-48085e25bdfde147\\build-script-build.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\glutin_wgl_sys-48085e25bdfde147\\build_script_build.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#winit@0.30.13","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\winit-0.30.13\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\winit-0.30.13\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["rwh_06"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\winit-0086fd02dcd276de\\build-script-build.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\winit-0086fd02dcd276de\\build_script_build.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#url@2.5.8","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\url-2.5.8\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"url","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\url-2.5.8\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\liburl-74b673525f4516f4.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#fdeflate@0.3.7","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\fdeflate-0.3.7\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"fdeflate","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\fdeflate-0.3.7\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libfdeflate-357937898dee1d94.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#schannel@0.1.29","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\schannel-0.1.29\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"schannel","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\schannel-0.1.29\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libschannel-d5fb9ee4cca0d688.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#uuid@1.23.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\uuid-1.23.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"uuid","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\uuid-1.23.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libuuid-112f7b361e653969.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#epaint_default_fonts@0.34.2","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\epaint_default_fonts-0.34.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"epaint_default_fonts","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\epaint_default_fonts-0.34.2\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libepaint_default_fonts-2b27b4c903b264e6.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#profiling@1.0.18","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\profiling-1.0.18\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"profiling","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\profiling-1.0.18\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libprofiling-0345b8b0acd4ae62.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#pxfm@0.1.29","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\pxfm-0.1.29\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"pxfm","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\pxfm-0.1.29\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libpxfm-2b54efd703dad027.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#url@2.5.8","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\url-2.5.8\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"url","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\url-2.5.8\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\liburl-74b673525f4516f4.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#self_cell@1.2.2","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\self_cell-1.2.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"self_cell","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\self_cell-1.2.2\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libself_cell-af0814e3b50d66b3.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unicase@2.9.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicase-2.9.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unicase","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicase-2.9.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libunicase-08e46608dbe1b7dd.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#pxfm@0.1.29","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\pxfm-0.1.29\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"pxfm","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\pxfm-0.1.29\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libpxfm-2b54efd703dad027.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#epaint_default_fonts@0.34.2","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\epaint_default_fonts-0.34.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"epaint_default_fonts","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\epaint_default_fonts-0.34.2\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libepaint_default_fonts-2b27b4c903b264e6.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#uuid@1.23.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\uuid-1.23.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"uuid","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\uuid-1.23.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libuuid-112f7b361e653969.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#profiling@1.0.18","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\profiling-1.0.18\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"profiling","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\profiling-1.0.18\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libprofiling-0345b8b0acd4ae62.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#nohash-hasher@0.2.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\nohash-hasher-0.2.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"nohash_hasher","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\nohash-hasher-0.2.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libnohash_hasher-e530679b90ae1013.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#self_cell@1.2.2","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\self_cell-1.2.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"self_cell","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\self_cell-1.2.2\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libself_cell-af0814e3b50d66b3.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#powerfmt@0.2.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\powerfmt-0.2.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"powerfmt","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\powerfmt-0.2.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libpowerfmt-6df4206ac487d031.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#crossbeam-epoch@0.9.18","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crossbeam-epoch-0.9.18\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"crossbeam_epoch","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crossbeam-epoch-0.9.18\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libcrossbeam_epoch-8bb3412446d3a416.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#web_atoms@0.2.4","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\web_atoms-b2df5eefa590c479\\out"}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unicode-normalization@0.1.25","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicode-normalization-0.1.25\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unicode_normalization","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicode-normalization-0.1.25\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libunicode_normalization-8abd071bc01317a1.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#glutin_egl_sys@0.7.1","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\glutin_egl_sys-2cde1fa1f720199b\\out"}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#moxcms@0.8.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\moxcms-0.8.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"moxcms","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\moxcms-0.8.1\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["avx","avx_luts","avx_shaper_fixed_point_paths","avx_shaper_paths","default","lut","neon","neon_luts","neon_shaper_fixed_point_paths","neon_shaper_paths","sse","sse_luts","sse_shaper_fixed_point_paths","sse_shaper_paths"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libmoxcms-df0c935ccc884740.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#mime_guess@2.0.5","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\mime_guess-2.0.5\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"mime_guess","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\mime_guess-2.0.5\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libmime_guess-3a4f2af2e7e07b51.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#accesskit@0.24.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\accesskit-0.24.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"accesskit","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\accesskit-0.24.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libaccesskit-646764d1ed4ca92b.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#deranged@0.5.8","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\deranged-0.5.8\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"deranged","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\deranged-0.5.8\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","powerfmt"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libderanged-cd0b4c1789d94e95.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#native-tls@0.2.18","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\native-tls-0.2.18\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"native_tls","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\native-tls-0.2.18\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libnative_tls-5f2e4430fccdcc1f.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#png@0.18.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\png-0.18.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"png","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\png-0.18.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libpng-65f904438dfdf58d.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#winit@0.30.13","linked_libs":[],"linked_paths":[],"cfgs":["windows_platform"],"env":[],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\winit-8a2140f07d99932f\\out"}
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#glutin_wgl_sys@0.6.1","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\glutin_wgl_sys-032cd54ffec8cf22\\out"}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#moxcms@0.8.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\moxcms-0.8.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"moxcms","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\moxcms-0.8.1\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["avx","avx_luts","avx_shaper_fixed_point_paths","avx_shaper_paths","default","lut","neon","neon_luts","neon_shaper_fixed_point_paths","neon_shaper_paths","sse","sse_luts","sse_shaper_fixed_point_paths","sse_shaper_paths"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libmoxcms-df0c935ccc884740.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#png@0.18.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\png-0.18.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"png","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\png-0.18.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libpng-65f904438dfdf58d.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#accesskit@0.24.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\accesskit-0.24.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"accesskit","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\accesskit-0.24.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libaccesskit-646764d1ed4ca92b.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#crossbeam-epoch@0.9.18","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crossbeam-epoch-0.9.18\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"crossbeam_epoch","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crossbeam-epoch-0.9.18\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libcrossbeam_epoch-8bb3412446d3a416.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#glutin_egl_sys@0.7.1","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\glutin_egl_sys-2cde1fa1f720199b\\out"}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#string_cache@0.9.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\string_cache-0.9.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"string_cache","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\string_cache-0.9.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libstring_cache-688588db92cca53c.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#mime_guess@2.0.5","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\mime_guess-2.0.5\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"mime_guess","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\mime_guess-2.0.5\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libmime_guess-3a4f2af2e7e07b51.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#deranged@0.5.8","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\deranged-0.5.8\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"deranged","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\deranged-0.5.8\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","powerfmt"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libderanged-cd0b4c1789d94e95.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#epaint@0.34.2","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\epaint-0.34.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"epaint","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\epaint-0.34.2\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["bytemuck","default_fonts","epaint_default_fonts"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libepaint-641606b99321bdff.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unicode-normalization@0.1.25","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicode-normalization-0.1.25\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unicode_normalization","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicode-normalization-0.1.25\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libunicode_normalization-8abd071bc01317a1.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#glutin@0.32.3","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\glutin-0.32.3\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\glutin-0.32.3\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["egl","glutin_egl_sys","glutin_wgl_sys","libloading","wgl","windows-sys"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\glutin-8814561844213fff\\build-script-build.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\glutin-8814561844213fff\\build_script_build.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#memoffset@0.9.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\memoffset-0.9.1\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\memoffset-0.9.1\\build.rs","edition":"2015","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\memoffset-735d17ce60ecd1f2\\build-script-build.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\memoffset-735d17ce60ecd1f2\\build_script_build.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#nom@8.0.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\nom-8.0.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"nom","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\nom-8.0.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libnom-842706ed1cfe79f2.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ref-cast@1.0.25","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ref-cast-1.0.25\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ref-cast-1.0.25\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\ref-cast-9960e885cded8963\\build-script-build.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\ref-cast-9960e885cded8963\\build_script_build.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#byteorder-lite@0.1.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\byteorder-lite-0.1.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"byteorder_lite","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\byteorder-lite-0.1.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libbyteorder_lite-1c2a6ca3b7975aeb.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unicode-bidi@0.3.18","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicode-bidi-0.3.18\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unicode_bidi","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicode-bidi-0.3.18\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","hardcoded-data","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libunicode_bidi-e31608907ef91c5b.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#num-conv@0.2.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\num-conv-0.2.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"num_conv","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\num-conv-0.2.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libnum_conv-ac6af2b262dc77fb.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.22","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rustversion-1.0.22\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rustversion-1.0.22\\build\\build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\rustversion-f8e8dfefa013a996\\build-script-build.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\rustversion-f8e8dfefa013a996\\build_script_build.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rayon-core@1.13.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rayon-core-1.13.0\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rayon-core-1.13.0\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\rayon-core-aa7dd4aca3ebf830\\build-script-build.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\rayon-core-aa7dd4aca3ebf830\\build_script_build.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#utf-8@0.7.6","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\utf-8-0.7.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"utf8","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\utf-8-0.7.6\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libutf8-caa254ee0bcd03c6.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cursor-icon@1.2.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cursor-icon-1.2.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cursor_icon","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cursor-icon-1.2.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libcursor_icon-8053f197f50dec3f.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#getrandom@0.4.2","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\getrandom-0.4.2\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\getrandom-0.4.2\\build.rs","edition":"2024","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std","sys_rng"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\getrandom-39f4d1fc10416842\\build-script-build.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\getrandom-39f4d1fc10416842\\build_script_build.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rand_core@0.10.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rand_core-0.10.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rand_core","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rand_core-0.10.1\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\librand_core-038baa6939951a39.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#num-conv@0.2.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\num-conv-0.2.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"num_conv","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\num-conv-0.2.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libnum_conv-ac6af2b262dc77fb.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#http-range-header@0.4.2","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\http-range-header-0.4.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"http_range_header","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\http-range-header-0.4.2\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libhttp_range_header-a8be4f840b715d22.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#dtoa@1.0.11","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dtoa-1.0.11\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"dtoa","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dtoa-1.0.11\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libdtoa-120ccebca98f771d.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ryu@1.0.23","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ryu-1.0.23\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ryu","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ryu-1.0.23\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libryu-be3cedacaba87e89.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#smol_str@0.2.2","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\smol_str-0.2.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"smol_str","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\smol_str-0.2.2\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libsmol_str-3db583d199909b25.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unicode-properties@0.1.4","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicode-properties-0.1.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unicode_properties","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicode-properties-0.1.4\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","emoji","general-category"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libunicode_properties-42f2549f674d7261.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unicode-bidi@0.3.18","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicode-bidi-0.3.18\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unicode_bidi","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicode-bidi-0.3.18\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","hardcoded-data","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libunicode_bidi-e31608907ef91c5b.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#dpi@0.1.2","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dpi-0.1.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"dpi","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dpi-0.1.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libdpi-ee96fe8adfa6fd31.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#time-core@0.1.8","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\time-core-0.1.8\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"time_core","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\time-core-0.1.8\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libtime_core-7e90564c65f66b6a.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ryu@1.0.23","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ryu-1.0.23\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ryu","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ryu-1.0.23\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libryu-be3cedacaba87e89.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cursor-icon@1.2.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cursor-icon-1.2.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cursor_icon","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cursor-icon-1.2.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libcursor_icon-8053f197f50dec3f.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#bytecount@0.6.9","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\bytecount-0.6.9\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"bytecount","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\bytecount-0.6.9\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libbytecount-106d8accd465c79c.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#http-range-header@0.4.2","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\http-range-header-0.4.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"http_range_header","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\http-range-header-0.4.2\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libhttp_range_header-a8be4f840b715d22.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rayon-core@1.13.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rayon-core-1.13.0\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rayon-core-1.13.0\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\rayon-core-aa7dd4aca3ebf830\\build-script-build.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\rayon-core-aa7dd4aca3ebf830\\build_script_build.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#smol_str@0.2.2","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\smol_str-0.2.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"smol_str","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\smol_str-0.2.2\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libsmol_str-3db583d199909b25.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ref-cast@1.0.25","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ref-cast-1.0.25\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ref-cast-1.0.25\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\ref-cast-9960e885cded8963\\build-script-build.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\ref-cast-9960e885cded8963\\build_script_build.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.22","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rustversion-1.0.22\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rustversion-1.0.22\\build\\build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\rustversion-f8e8dfefa013a996\\build-script-build.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\rustversion-f8e8dfefa013a996\\build_script_build.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#dtoa@1.0.11","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dtoa-1.0.11\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"dtoa","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dtoa-1.0.11\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libdtoa-120ccebca98f771d.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#error-code@3.3.2","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\error-code-3.3.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"error_code","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\error-code-3.3.2\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\liberror_code-dc4ffb5b9e244480.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rand_core@0.10.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rand_core-0.10.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rand_core","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rand_core-0.10.1\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\librand_core-038baa6939951a39.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#bytecount@0.6.9","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\bytecount-0.6.9\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"bytecount","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\bytecount-0.6.9\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libbytecount-106d8accd465c79c.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#dtoa-short@0.3.5","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dtoa-short-0.3.5\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"dtoa_short","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dtoa-short-0.3.5\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libdtoa_short-17e3b05bf7c07703.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tendril@0.5.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tendril-0.5.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tendril","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tendril-0.5.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libtendril-3f49a6d750d98a6e.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#memoffset@0.9.1","linked_libs":[],"linked_paths":[],"cfgs":["tuple_ty","allow_clippy","maybe_uninit","doctests","raw_ref_macros","stable_const","stable_offset_of"],"env":[],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\memoffset-3e1cff0df73e61f0\\out"}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_urlencoded@0.7.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_urlencoded-0.7.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serde_urlencoded","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_urlencoded-0.7.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libserde_urlencoded-306f8ed1d49c9a9c.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#stringprep@0.1.5","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\stringprep-0.1.5\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"stringprep","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\stringprep-0.1.5\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libstringprep-52a354a93660946f.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#winit@0.30.13","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\winit-0.30.13\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"winit","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\winit-0.30.13\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["rwh_06"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libwinit-4b594adcff88d32d.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#nom_locate@5.0.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\nom_locate-5.0.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"nom_locate","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\nom_locate-5.0.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libnom_locate-d030cec9ae277474.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#clipboard-win@5.4.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\clipboard-win-5.4.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"clipboard_win","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\clipboard-win-5.4.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libclipboard_win-c569928a03cef371.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#time@0.3.47","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\time-0.3.47\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"time","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\time-0.3.47\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","formatting","parsing","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libtime-19d826610ff103b5.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tower-http@0.6.11","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tower-http-0.6.11\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tower_http","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tower-http-0.6.11\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["cors","default","follow-redirect","fs","futures-core","futures-util","httpdate","mime","mime_guess","percent-encoding","set-status","tokio-util","tower"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libtower_http-6709c408a15c8d73.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#image@0.25.10","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\image-0.25.10\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"image","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\image-0.25.10\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["bmp","png"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libimage-17e3687cd77c4bc5.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#getrandom@0.4.2","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\getrandom-a50bb574bc6d93fc\\out"}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#egui@0.34.2","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\egui-0.34.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"egui","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\egui-0.34.2\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["bytemuck","default_fonts"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libegui-c94a9705b55d14bb.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#glutin@0.32.3","linked_libs":[],"linked_paths":[],"cfgs":["egl_backend","wgl_backend"],"env":[],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\glutin-a2c94536af3a3085\\out"}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#stringprep@0.1.5","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\stringprep-0.1.5\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"stringprep","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\stringprep-0.1.5\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libstringprep-52a354a93660946f.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tendril@0.5.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tendril-0.5.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tendril","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tendril-0.5.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libtendril-3f49a6d750d98a6e.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#nom_locate@5.0.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\nom_locate-5.0.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"nom_locate","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\nom_locate-5.0.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libnom_locate-d030cec9ae277474.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tower-http@0.6.11","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tower-http-0.6.11\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tower_http","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tower-http-0.6.11\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["cors","default","follow-redirect","fs","futures-core","futures-util","httpdate","mime","mime_guess","percent-encoding","set-status","tokio-util","tower"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libtower_http-6709c408a15c8d73.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#dtoa-short@0.3.5","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dtoa-short-0.3.5\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"dtoa_short","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dtoa-short-0.3.5\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libdtoa_short-17e3b05bf7c07703.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#clipboard-win@5.4.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\clipboard-win-5.4.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"clipboard_win","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\clipboard-win-5.4.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libclipboard_win-c569928a03cef371.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#winit@0.30.13","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\winit-0.30.13\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"winit","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\winit-0.30.13\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["rwh_06"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libwinit-4b594adcff88d32d.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.22","linked_libs":[],"linked_paths":[],"cfgs":["host_os=\"windows\""],"env":[],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\rustversion-dc853286f2a08241\\out"}
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#rayon-core@1.13.0","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\rayon-core-9ca26e342826196b\\out"}
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#ref-cast@1.0.25","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\ref-cast-f798a0562202bd1b\\out"}
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.22","linked_libs":[],"linked_paths":[],"cfgs":["host_os=\"windows\""],"env":[],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\rustversion-dc853286f2a08241\\out"}
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#memoffset@0.9.1","linked_libs":[],"linked_paths":[],"cfgs":["tuple_ty","allow_clippy","maybe_uninit","doctests","raw_ref_macros","stable_const","stable_offset_of"],"env":[],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\memoffset-3e1cff0df73e61f0\\out"}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#time@0.3.47","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\time-0.3.47\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"time","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\time-0.3.47\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","formatting","parsing","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libtime-19d826610ff103b5.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#crossbeam-deque@0.8.6","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crossbeam-deque-0.8.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"crossbeam_deque","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crossbeam-deque-0.8.6\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libcrossbeam_deque-57432ce41b7ed0c6.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#web_atoms@0.2.4","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\web_atoms-0.2.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"web_atoms","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\web_atoms-0.2.4\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libweb_atoms-aa4ecb6281718813.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#glutin_wgl_sys@0.6.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\glutin_wgl_sys-0.6.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"glutin_wgl_sys","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\glutin_wgl_sys-0.6.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libglutin_wgl_sys-cbc292ea17c8182f.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#glutin_egl_sys@0.7.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\glutin_egl_sys-0.7.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"glutin_egl_sys","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\glutin_egl_sys-0.7.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libglutin_egl_sys-38e066cb1ad38cc6.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tokio-native-tls@0.3.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tokio-native-tls-0.3.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tokio_native_tls","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tokio-native-tls-0.3.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libtokio_native_tls-2683c0bec03316d5.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#web_atoms@0.2.4","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\web_atoms-0.2.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"web_atoms","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\web_atoms-0.2.4\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libweb_atoms-aa4ecb6281718813.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#glutin@0.32.3","linked_libs":[],"linked_paths":[],"cfgs":["egl_backend","wgl_backend"],"env":[],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\glutin-a2c94536af3a3085\\out"}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#glutin_egl_sys@0.7.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\glutin_egl_sys-0.7.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"glutin_egl_sys","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\glutin_egl_sys-0.7.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libglutin_egl_sys-38e066cb1ad38cc6.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#glutin_wgl_sys@0.6.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\glutin_wgl_sys-0.6.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"glutin_wgl_sys","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\glutin_wgl_sys-0.6.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libglutin_wgl_sys-cbc292ea17c8182f.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#crossbeam-deque@0.8.6","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crossbeam-deque-0.8.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"crossbeam_deque","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crossbeam-deque-0.8.6\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libcrossbeam_deque-57432ce41b7ed0c6.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tokio-rustls@0.26.4","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tokio-rustls-0.26.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tokio_rustls","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tokio-rustls-0.26.4\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["aws-lc-rs","aws_lc_rs","tls12"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libtokio_rustls-fc1435315d5c688a.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ecb@0.1.2","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ecb-0.1.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ecb","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ecb-0.1.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["block-padding","default"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libecb-745ba2c9e3506911.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cbc@0.1.2","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cbc-0.1.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cbc","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cbc-0.1.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["block-padding","default"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libcbc-09ae5b7d92a9fc86.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#aes@0.8.4","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\aes-0.8.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"aes","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\aes-0.8.4\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libaes-74429019596e9310.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ecb@0.1.2","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ecb-0.1.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ecb","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ecb-0.1.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["block-padding","default"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libecb-745ba2c9e3506911.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\sha2-0.10.9\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"sha2","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\sha2-0.10.9\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libsha2-1f901e160e257684.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#sha1@0.10.6","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\sha1-0.10.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"sha1","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\sha1-0.10.6\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libsha1-fa02e1b8c2be36dd.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#selectors@0.38.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\selectors-0.38.0\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\selectors-0.38.0\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\selectors-37c22b5db46074a6\\build-script-build.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\selectors-37c22b5db46074a6\\build_script_build.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-sys-0.59.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_sys","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-sys-0.59.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["Win32","Win32_Foundation","Win32_Graphics","Win32_Graphics_Gdi","Win32_Storage","Win32_Storage_FileSystem","Win32_System","Win32_System_DataExchange","Win32_System_Memory","Win32_System_Ole","Win32_UI","Win32_UI_Shell","default"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libwindows_sys-de364723ba88b8ca.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\sha2-0.10.9\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"sha2","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\sha2-0.10.9\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libsha2-1f901e160e257684.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#md-5@0.10.6","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\md-5-0.10.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"md5","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\md-5-0.10.6\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libmd5-c97c3475f3b7efd4.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#selectors@0.38.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\selectors-0.38.0\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\selectors-0.38.0\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\selectors-37c22b5db46074a6\\build-script-build.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\selectors-37c22b5db46074a6\\build_script_build.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#glutin-winit@0.5.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\glutin-winit-0.5.0\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\glutin-winit-0.5.0\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["egl","wgl"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\glutin-winit-aa7bf021f40cbbb4\\build-script-build.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\glutin-winit-aa7bf021f40cbbb4\\build_script_build.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-sys-0.59.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_sys","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-sys-0.59.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["Win32","Win32_Foundation","Win32_Graphics","Win32_Graphics_Gdi","Win32_Storage","Win32_Storage_FileSystem","Win32_System","Win32_System_DataExchange","Win32_System_Memory","Win32_System_Ole","Win32_UI","Win32_UI_Shell","default"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libwindows_sys-de364723ba88b8ca.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ring@0.17.14","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ring-0.17.14\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ring-0.17.14\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","dev_urandom_fallback"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\ring-bc47582441124716\\build-script-build.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\ring-bc47582441124716\\build_script_build.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ref-cast-impl@1.0.25","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ref-cast-impl-1.0.25\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"ref_cast_impl","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ref-cast-impl-1.0.25\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\ref_cast_impl-7d6384b6812a7f84.dll","C:\\RustProjects\\AiRust\\target\\debug\\deps\\ref_cast_impl-7d6384b6812a7f84.dll.lib","C:\\RustProjects\\AiRust\\target\\debug\\deps\\ref_cast_impl-7d6384b6812a7f84.dll.exp","C:\\RustProjects\\AiRust\\target\\debug\\deps\\ref_cast_impl-7d6384b6812a7f84.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#derive_more-impl@2.1.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\derive_more-impl-2.1.1\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"derive_more_impl","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\derive_more-impl-2.1.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["add","add_assign","default"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\derive_more_impl-63540f8577d0efdf.dll","C:\\RustProjects\\AiRust\\target\\debug\\deps\\derive_more_impl-63540f8577d0efdf.dll.lib","C:\\RustProjects\\AiRust\\target\\debug\\deps\\derive_more_impl-63540f8577d0efdf.dll.exp","C:\\RustProjects\\AiRust\\target\\debug\\deps\\derive_more_impl-63540f8577d0efdf.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_derive_internals@0.29.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_derive_internals-0.29.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serde_derive_internals","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_derive_internals-0.29.1\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libserde_derive_internals-fe24608417ddf3c1.rlib","C:\\RustProjects\\AiRust\\target\\debug\\deps\\libserde_derive_internals-fe24608417ddf3c1.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ref-cast-impl@1.0.25","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ref-cast-impl-1.0.25\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"ref_cast_impl","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ref-cast-impl-1.0.25\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\ref_cast_impl-7d6384b6812a7f84.dll","C:\\RustProjects\\AiRust\\target\\debug\\deps\\ref_cast_impl-7d6384b6812a7f84.dll.lib","C:\\RustProjects\\AiRust\\target\\debug\\deps\\ref_cast_impl-7d6384b6812a7f84.dll.exp","C:\\RustProjects\\AiRust\\target\\debug\\deps\\ref_cast_impl-7d6384b6812a7f84.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cssparser-macros@0.7.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cssparser-macros-0.7.0\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"cssparser_macros","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cssparser-macros-0.7.0\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\cssparser_macros-10f28bbef95f42bc.dll","C:\\RustProjects\\AiRust\\target\\debug\\deps\\cssparser_macros-10f28bbef95f42bc.dll.lib","C:\\RustProjects\\AiRust\\target\\debug\\deps\\cssparser_macros-10f28bbef95f42bc.dll.exp","C:\\RustProjects\\AiRust\\target\\debug\\deps\\cssparser_macros-10f28bbef95f42bc.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#fs-err@3.3.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\fs-err-3.3.0\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\fs-err-3.3.0\\build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["tokio"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\fs-err-4468d1cdb4d8b2cd\\build-script-build.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\fs-err-4468d1cdb4d8b2cd\\build_script_build.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#libloading@0.8.9","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\libloading-0.8.9\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"libloading","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\libloading-0.8.9\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\liblibloading-5821614189fa0121.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#multer@3.1.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\multer-3.1.0\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\multer-3.1.0\\build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\multer-59ffd86286996a06\\build-script-build.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\multer-59ffd86286996a06\\build_script_build.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#either@1.15.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\either-1.15.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"either","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\either-1.15.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libeither-89e383801e9856a5.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ttf-parser@0.25.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ttf-parser-0.25.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ttf_parser","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ttf-parser-0.25.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["apple-layout","default","glyph-names","opentype-layout","std","variable-fonts"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libttf_parser-6104c6a7c16e87b5.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.3.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cpufeatures-0.3.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cpufeatures","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cpufeatures-0.3.0\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libcpufeatures-d06dd0812850c682.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cpal@0.15.3","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cpal-0.15.3\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cpal-0.15.3\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\cpal-d5080329d5a2bf19\\build-script-build.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\cpal-d5080329d5a2bf19\\build_script_build.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#data-encoding@2.11.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\data-encoding-2.11.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"data_encoding","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\data-encoding-2.11.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libdata_encoding-6e32afe4b703de9d.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#pom@1.1.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\pom-1.1.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"pom","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\pom-1.1.0\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libpom-ca52d46cc8003717.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.10","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\regex-syntax-0.8.10\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"regex_syntax","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\regex-syntax-0.8.10\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std","unicode","unicode-age","unicode-bool","unicode-case","unicode-gencat","unicode-perl","unicode-script","unicode-segment"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libregex_syntax-378c087a2d4cbd49.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rangemap@1.7.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rangemap-1.7.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rangemap","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rangemap-1.7.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\librangemap-98e50155750b6757.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#weezl@0.1.12","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\weezl-0.1.12\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"weezl","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\weezl-0.1.12\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libweezl-1133cb9e0046e68b.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#jiff-tzdb@0.1.6","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\jiff-tzdb-0.1.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"jiff_tzdb","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\jiff-tzdb-0.1.6\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libjiff_tzdb-d53f330839919472.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#bumpalo@3.20.2","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\bumpalo-3.20.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"bumpalo","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\bumpalo-3.20.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libbumpalo-f8e379a98dcaff5c.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#glutin-winit@0.5.0","linked_libs":[],"linked_paths":[],"cfgs":["egl_backend","wgl_backend"],"env":[],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\glutin-winit-9b4c0f6b01903b3a\\out"}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#glutin@0.32.3","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\glutin-0.32.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"glutin","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\glutin-0.32.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["egl","glutin_egl_sys","glutin_wgl_sys","libloading","wgl","windows-sys"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libglutin-0abae65d53d99f5e.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#arboard@3.6.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\arboard-3.6.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"arboard","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\arboard-3.6.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["core-graphics","image","image-data","windows-sys"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libarboard-0518a3eb1974c2be.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#schemars_derive@1.2.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\schemars_derive-1.2.1\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"schemars_derive","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\schemars_derive-1.2.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\schemars_derive-17756ae4601018ad.dll","C:\\RustProjects\\AiRust\\target\\debug\\deps\\schemars_derive-17756ae4601018ad.dll.lib","C:\\RustProjects\\AiRust\\target\\debug\\deps\\schemars_derive-17756ae4601018ad.dll.exp","C:\\RustProjects\\AiRust\\target\\debug\\deps\\schemars_derive-17756ae4601018ad.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ref-cast@1.0.25","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ref-cast-1.0.25\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ref_cast","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ref-cast-1.0.25\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libref_cast-afd07d229113843d.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.14","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\regex-automata-0.4.14\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"regex_automata","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\regex-automata-0.4.14\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","hybrid","meta","nfa-pikevm","nfa-thompson","perf-inline","std","syntax","unicode","unicode-age","unicode-bool","unicode-case","unicode-gencat","unicode-perl","unicode-script","unicode-segment","unicode-word-boundary"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libregex_automata-93151d4a1134b66b.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#multer@3.1.0","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\multer-e063926b383e7cb5\\out"}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rangemap@1.7.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rangemap-1.7.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rangemap","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rangemap-1.7.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\librangemap-98e50155750b6757.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#pom@1.1.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\pom-1.1.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"pom","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\pom-1.1.0\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libpom-ca52d46cc8003717.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#either@1.15.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\either-1.15.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"either","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\either-1.15.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libeither-89e383801e9856a5.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.3.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cpufeatures-0.3.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cpufeatures","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cpufeatures-0.3.0\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libcpufeatures-d06dd0812850c682.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ttf-parser@0.25.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ttf-parser-0.25.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ttf_parser","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ttf-parser-0.25.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["apple-layout","default","glyph-names","opentype-layout","std","variable-fonts"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libttf_parser-6104c6a7c16e87b5.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#weezl@0.1.12","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\weezl-0.1.12\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"weezl","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\weezl-0.1.12\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libweezl-1133cb9e0046e68b.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tungstenite@0.29.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tungstenite-0.29.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tungstenite","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tungstenite-0.29.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["data-encoding","handshake","http","httparse","sha1"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libtungstenite-b92d89f760eec27f.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zopfli@0.8.3","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zopfli-0.8.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zopfli","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zopfli-0.8.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","gzip","std","zlib"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libzopfli-b3c4270a9d9ab9d6.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#jiff-tzdb-platform@0.1.3","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\jiff-tzdb-platform-0.1.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"jiff_tzdb_platform","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\jiff-tzdb-platform-0.1.3\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libjiff_tzdb_platform-4cd40bb331f062f0.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#chacha20@0.10.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\chacha20-0.10.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"chacha20","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\chacha20-0.10.0\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["rng"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libchacha20-53334bbeacbe0bf7.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tungstenite@0.29.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tungstenite-0.29.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tungstenite","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tungstenite-0.29.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["data-encoding","handshake","http","httparse","sha1"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libtungstenite-b92d89f760eec27f.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#fs-err@3.3.0","linked_libs":[],"linked_paths":[],"cfgs":["rustc_1_56","rustc_1_63","rustc_1_73","rustc_1_75","rustc_1_81","rustc_1_89"],"env":[],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\fs-err-b4fedfec65f47f9c\\out"}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cssparser@0.37.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cssparser-0.37.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cssparser","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cssparser-0.37.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","fast_match_byte","fast_match_color"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libcssparser-db2f9252f7a374cb.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.14","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\regex-automata-0.4.14\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"regex_automata","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\regex-automata-0.4.14\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","hybrid","meta","nfa-pikevm","nfa-thompson","perf-inline","std","syntax","unicode","unicode-age","unicode-bool","unicode-case","unicode-gencat","unicode-perl","unicode-script","unicode-segment","unicode-word-boundary"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libregex_automata-93151d4a1134b66b.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#cpal@0.15.3","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\cpal-22f4765b95c0ee0d\\out"}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#derive_more@2.1.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\derive_more-2.1.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"derive_more","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\derive_more-2.1.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["add","add_assign","default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libderive_more-7a55af45dd03fa72.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#glutin-winit@0.5.0","linked_libs":[],"linked_paths":[],"cfgs":["egl_backend","wgl_backend"],"env":[],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\glutin-winit-9b4c0f6b01903b3a\\out"}
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#ring@0.17.14","linked_libs":["static=ring_core_0_17_14_","static=ring_core_0_17_14__test"],"linked_paths":["native=C:\\RustProjects\\AiRust\\target\\debug\\build\\ring-0ebc888171a2d886\\out"],"cfgs":[],"env":[],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\ring-0ebc888171a2d886\\out"}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cssparser@0.37.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cssparser-0.37.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cssparser","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cssparser-0.37.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","fast_match_byte","fast_match_color"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libcssparser-db2f9252f7a374cb.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#fs-err@3.3.0","linked_libs":[],"linked_paths":[],"cfgs":["rustc_1_56","rustc_1_63","rustc_1_73","rustc_1_75","rustc_1_81","rustc_1_89"],"env":[],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\fs-err-b4fedfec65f47f9c\\out"}
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#multer@3.1.0","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\multer-e063926b383e7cb5\\out"}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#glutin@0.32.3","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\glutin-0.32.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"glutin","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\glutin-0.32.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["egl","glutin_egl_sys","glutin_wgl_sys","libloading","wgl","windows-sys"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libglutin-0abae65d53d99f5e.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#schemars_derive@1.2.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\schemars_derive-1.2.1\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"schemars_derive","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\schemars_derive-1.2.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\schemars_derive-17756ae4601018ad.dll","C:\\RustProjects\\AiRust\\target\\debug\\deps\\schemars_derive-17756ae4601018ad.dll.lib","C:\\RustProjects\\AiRust\\target\\debug\\deps\\schemars_derive-17756ae4601018ad.dll.exp","C:\\RustProjects\\AiRust\\target\\debug\\deps\\schemars_derive-17756ae4601018ad.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#selectors@0.38.0","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\selectors-934cf3c06151f24d\\out"}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#hyper-tls@0.6.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hyper-tls-0.6.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hyper_tls","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hyper-tls-0.6.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libhyper_tls-a75e6ee3009abcff.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#arboard@3.6.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\arboard-3.6.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"arboard","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\arboard-3.6.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["core-graphics","image","image-data","windows-sys"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libarboard-0518a3eb1974c2be.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ref-cast@1.0.25","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ref-cast-1.0.25\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ref_cast","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ref-cast-1.0.25\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libref_cast-afd07d229113843d.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#markup5ever@0.39.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\markup5ever-0.39.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"markup5ever","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\markup5ever-0.39.0\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libmarkup5ever-2f2e7de542e80217.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#memoffset@0.9.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\memoffset-0.9.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"memoffset","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\memoffset-0.9.1\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libmemoffset-10f0a579c2f9fbba.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.22","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rustversion-1.0.22\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"rustversion","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rustversion-1.0.22\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\rustversion-3bff64c9379d1bfc.dll","C:\\RustProjects\\AiRust\\target\\debug\\deps\\rustversion-3bff64c9379d1bfc.dll.lib","C:\\RustProjects\\AiRust\\target\\debug\\deps\\rustversion-3bff64c9379d1bfc.dll.exp","C:\\RustProjects\\AiRust\\target\\debug\\deps\\rustversion-3bff64c9379d1bfc.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rayon-core@1.13.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rayon-core-1.13.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rayon_core","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rayon-core-1.13.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\librayon_core-01157901cbc60bfb.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#hyper-tls@0.6.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hyper-tls-0.6.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hyper_tls","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hyper-tls-0.6.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libhyper_tls-a75e6ee3009abcff.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.22","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rustversion-1.0.22\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"rustversion","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rustversion-1.0.22\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\rustversion-3bff64c9379d1bfc.dll","C:\\RustProjects\\AiRust\\target\\debug\\deps\\rustversion-3bff64c9379d1bfc.dll.lib","C:\\RustProjects\\AiRust\\target\\debug\\deps\\rustversion-3bff64c9379d1bfc.dll.exp","C:\\RustProjects\\AiRust\\target\\debug\\deps\\rustversion-3bff64c9379d1bfc.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#getrandom@0.4.2","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\getrandom-0.4.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"getrandom","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\getrandom-0.4.2\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std","sys_rng"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libgetrandom-83dd1d840b4be83b.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#memoffset@0.9.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\memoffset-0.9.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"memoffset","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\memoffset-0.9.1\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libmemoffset-10f0a579c2f9fbba.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#webbrowser@1.2.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\webbrowser-1.2.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"webbrowser","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\webbrowser-1.2.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libwebbrowser-691a56814eb1deaa.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#async-stream-impl@0.3.6","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\async-stream-impl-0.3.6\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"async_stream_impl","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\async-stream-impl-0.3.6\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\async_stream_impl-bc85b3fdfbcbcdbe.dll","C:\\RustProjects\\AiRust\\target\\debug\\deps\\async_stream_impl-bc85b3fdfbcbcdbe.dll.lib","C:\\RustProjects\\AiRust\\target\\debug\\deps\\async_stream_impl-bc85b3fdfbcbcdbe.dll.exp","C:\\RustProjects\\AiRust\\target\\debug\\deps\\async_stream_impl-bc85b3fdfbcbcdbe.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#servo_arc@0.4.3","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\servo_arc-0.4.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"servo_arc","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\servo_arc-0.4.3\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","track_alloc_size"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libservo_arc-70513ee80df9869f.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.17","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\getrandom-0.2.17\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"getrandom","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\getrandom-0.2.17\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libgetrandom-eb5b1ba3de9ce70d.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rfd@0.17.2","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rfd-0.17.2\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rfd-0.17.2\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","pollster","wayland","wayland-backend","wayland-client","wayland-protocols","xdg-portal"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\rfd-e5321c7aed7049c0\\build-script-build.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\rfd-e5321c7aed7049c0\\build_script_build.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#xml@1.3.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\xml-1.3.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"xml","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\xml-1.3.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libxml-ee30ccbd6c7cde19.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#static_assertions@1.1.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\static_assertions-1.1.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"static_assertions","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\static_assertions-1.1.0\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libstatic_assertions-9ae57487297d0a68.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.102","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\anyhow-1.0.102\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\anyhow-1.0.102\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\anyhow-854be13ee807ceeb\\build-script-build.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\anyhow-854be13ee807ceeb\\build_script_build.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#web-time@1.1.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\web-time-1.1.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"web_time","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\web-time-1.1.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libweb_time-a272cd78d0adca81.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#dyn-clone@1.0.20","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dyn-clone-1.0.20\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"dyn_clone","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dyn-clone-1.0.20\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libdyn_clone-18d05a12acfbab0b.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#spin@0.9.8","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\spin-0.9.8\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"spin","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\spin-0.9.8\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["mutex","spin_mutex"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libspin-d86a8fc1d87dcf1d.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.2.2","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicode-width-0.2.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unicode_width","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicode-width-0.2.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["cjk","default"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libunicode_width-a3e4f9cc4e0ef260.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.1.2","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rustc-hash-2.1.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rustc_hash","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rustc-hash-2.1.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\librustc_hash-f1348b0218831f74.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#glow@0.17.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\glow-0.17.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"glow","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\glow-0.17.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libglow-f2cd0252591359c2.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#litrs@1.0.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\litrs-1.0.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"litrs","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\litrs-1.0.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\liblitrs-2c375de6283c198d.rlib","C:\\RustProjects\\AiRust\\target\\debug\\deps\\liblitrs-2c375de6283c198d.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rand@0.10.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rand-0.10.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rand","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rand-0.10.1\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std","std_rng","sys_rng","thread_rng"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\librand-f946fd41860dca1f.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#document-features@0.2.12","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\document-features-0.2.12\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"document_features","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\document-features-0.2.12\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\document_features-6abd9d08255c46b3.dll","C:\\RustProjects\\AiRust\\target\\debug\\deps\\document_features-6abd9d08255c46b3.dll.lib","C:\\RustProjects\\AiRust\\target\\debug\\deps\\document_features-6abd9d08255c46b3.dll.exp","C:\\RustProjects\\AiRust\\target\\debug\\deps\\document_features-6abd9d08255c46b3.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#egui-winit@0.34.2","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\egui-winit-0.34.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"egui_winit","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\egui-winit-0.34.2\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["arboard","bytemuck","clipboard","links","smithay-clipboard","webbrowser"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libegui_winit-9ec09063919d3168.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#getopts@0.2.24","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\getopts-0.2.24\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"getopts","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\getopts-0.2.24\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","unicode"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libgetopts-654c317a779436e9.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#selectors@0.38.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\selectors-0.38.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"selectors","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\selectors-0.38.0\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libselectors-b43be4ab3a7bf4c2.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#schemars@1.2.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\schemars-1.2.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"schemars","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\schemars-1.2.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","derive","preserve_order","schemars_derive","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libschemars-20ef9d27af56d743.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.102","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\anyhow-7292878aaa05da4c\\out"}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#egui_glow@0.34.2","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\egui_glow-0.34.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"egui_glow","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\egui_glow-0.34.2\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libegui_glow-e8dccd28340deadb.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#async-stream@0.3.6","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\async-stream-0.3.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"async_stream","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\async-stream-0.3.6\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libasync_stream-eb4098ecb7c0cd0e.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#glow@0.17.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\glow-0.17.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"glow","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\glow-0.17.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libglow-f2cd0252591359c2.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.1.2","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rustc-hash-2.1.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rustc_hash","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rustc-hash-2.1.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\librustc_hash-f1348b0218831f74.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rfd@0.17.2","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rfd-0.17.2\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rfd-0.17.2\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","pollster","wayland","wayland-backend","wayland-client","wayland-protocols","xdg-portal"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\build\\rfd-e5321c7aed7049c0\\build-script-build.exe","C:\\RustProjects\\AiRust\\target\\debug\\build\\rfd-e5321c7aed7049c0\\build_script_build.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#dyn-clone@1.0.20","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dyn-clone-1.0.20\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"dyn_clone","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dyn-clone-1.0.20\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libdyn_clone-18d05a12acfbab0b.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#xml@1.3.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\xml-1.3.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"xml","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\xml-1.3.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libxml-ee30ccbd6c7cde19.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.2.2","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicode-width-0.2.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unicode_width","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicode-width-0.2.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["cjk","default"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libunicode_width-a3e4f9cc4e0ef260.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#spin@0.9.8","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\spin-0.9.8\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"spin","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\spin-0.9.8\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["mutex","spin_mutex"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libspin-d86a8fc1d87dcf1d.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#web-time@1.1.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\web-time-1.1.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"web_time","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\web-time-1.1.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libweb_time-a272cd78d0adca81.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#rfd@0.17.2","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\rfd-b2c2af74459deef2\\out"}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#document-features@0.2.12","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\document-features-0.2.12\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"document_features","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\document-features-0.2.12\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\document_features-6abd9d08255c46b3.dll","C:\\RustProjects\\AiRust\\target\\debug\\deps\\document_features-6abd9d08255c46b3.dll.lib","C:\\RustProjects\\AiRust\\target\\debug\\deps\\document_features-6abd9d08255c46b3.dll.exp","C:\\RustProjects\\AiRust\\target\\debug\\deps\\document_features-6abd9d08255c46b3.pdb"],"executable":null,"fresh":true}
|
||||
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.102","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"C:\\RustProjects\\AiRust\\target\\debug\\build\\anyhow-7292878aaa05da4c\\out"}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#selectors@0.38.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\selectors-0.38.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"selectors","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\selectors-0.38.0\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libselectors-b43be4ab3a7bf4c2.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ring@0.17.14","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ring-0.17.14\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ring","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ring-0.17.14\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","dev_urandom_fallback"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libring-0bc1251affeafb15.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#xml-rs@1.0.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\xml-rs-1.0.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"xml","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\xml-rs-1.0.0\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libxml-21a56efbe980829f.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#multer@3.1.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\multer-3.1.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"multer","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\multer-3.1.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libmulter-b10b3d71b63d0e95.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#jiff@0.2.24","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\jiff-0.2.24\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"jiff","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\jiff-0.2.24\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","perf-inline","std","tz-fat","tz-system","tzdb-bundle-platform","tzdb-concatenated","tzdb-zoneinfo"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libjiff-89079c355fe6c853.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#arc-swap@1.9.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\arc-swap-1.9.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"arc_swap","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\arc-swap-1.9.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libarc_swap-489371d5daedc70a.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tokio-tungstenite@0.29.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tokio-tungstenite-0.29.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tokio_tungstenite","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tokio-tungstenite-0.29.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["connect","default","handshake","stream"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libtokio_tungstenite-de5a4b24cc88be24.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rayon@1.12.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rayon-1.12.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rayon","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rayon-1.12.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\librayon-3d51bdd8c85daac5.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#reqwest@0.12.28","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\reqwest-0.12.28\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"reqwest","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\reqwest-0.12.28\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["__tls","default-tls","json","stream"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libreqwest-aa455547ff8865fc.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#fs-err@3.3.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\fs-err-3.3.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"fs_err","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\fs-err-3.3.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["tokio"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libfs_err-c9fd19b2d5904dad.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zip@3.0.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zip-3.0.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zip","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zip-3.0.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["_deflate-any","deflate","deflate-flate2","deflate-flate2-zlib-rs","deflate-zopfli","zopfli"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libzip-4fe959c768f9e2e3.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#regex@1.12.3","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\regex-1.12.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"regex","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\regex-1.12.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["perf-cache","perf-dfa","perf-inline","std","unicode","unicode-age","unicode-bool","unicode-case","unicode-gencat","unicode-perl","unicode-script","unicode-segment"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libregex-84e075025b335e3b.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#html5ever@0.39.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\html5ever-0.39.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"html5ever","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\html5ever-0.39.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libhtml5ever-63e3504d12ab56d7.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#lopdf@0.38.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\lopdf-0.38.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"lopdf","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\lopdf-0.38.0\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\liblopdf-96ec63f4d6dfe4ec.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#type1-encoding-parser@0.1.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\type1-encoding-parser-0.1.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"type1_encoding_parser","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\type1-encoding-parser-0.1.1\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libtype1_encoding_parser-201ac5f96a9ce9f4.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#schemars@1.2.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\schemars-1.2.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"schemars","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\schemars-1.2.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","derive","preserve_order","schemars_derive","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libschemars-20ef9d27af56d743.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#xml-rs@1.0.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\xml-rs-1.0.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"xml","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\xml-rs-1.0.0\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libxml-21a56efbe980829f.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#getopts@0.2.24","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\getopts-0.2.24\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"getopts","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\getopts-0.2.24\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","unicode"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libgetopts-654c317a779436e9.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#async-stream@0.3.6","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\async-stream-0.3.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"async_stream","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\async-stream-0.3.6\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libasync_stream-eb4098ecb7c0cd0e.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#glutin-winit@0.5.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\glutin-winit-0.5.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"glutin_winit","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\glutin-winit-0.5.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["egl","wgl"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libglutin_winit-50d8b1ae3a84e9a4.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#arc-swap@1.9.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\arc-swap-1.9.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"arc_swap","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\arc-swap-1.9.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libarc_swap-489371d5daedc70a.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rayon@1.12.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rayon-1.12.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rayon","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rayon-1.12.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\librayon-3d51bdd8c85daac5.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#html5ever@0.39.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\html5ever-0.39.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"html5ever","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\html5ever-0.39.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libhtml5ever-63e3504d12ab56d7.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#reqwest@0.12.28","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\reqwest-0.12.28\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"reqwest","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\reqwest-0.12.28\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["__tls","default-tls","json","stream"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libreqwest-aa455547ff8865fc.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rand@0.10.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rand-0.10.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rand","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rand-0.10.1\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std","std_rng","sys_rng","thread_rng"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\librand-f946fd41860dca1f.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#jiff@0.2.24","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\jiff-0.2.24\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"jiff","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\jiff-0.2.24\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","perf-inline","std","tz-fat","tz-system","tzdb-bundle-platform","tzdb-concatenated","tzdb-zoneinfo"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libjiff-89079c355fe6c853.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#regex@1.12.3","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\regex-1.12.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"regex","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\regex-1.12.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["perf-cache","perf-dfa","perf-inline","std","unicode","unicode-age","unicode-bool","unicode-case","unicode-gencat","unicode-perl","unicode-script","unicode-segment"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libregex-84e075025b335e3b.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zip@3.0.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zip-3.0.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zip","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zip-3.0.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["_deflate-any","deflate","deflate-flate2","deflate-flate2-zlib-rs","deflate-zopfli","zopfli"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libzip-4fe959c768f9e2e3.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tokio-tungstenite@0.29.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tokio-tungstenite-0.29.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tokio_tungstenite","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tokio-tungstenite-0.29.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["connect","default","handshake","stream"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libtokio_tungstenite-de5a4b24cc88be24.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#fs-err@3.3.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\fs-err-3.3.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"fs_err","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\fs-err-3.3.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["tokio"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libfs_err-c9fd19b2d5904dad.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#type1-encoding-parser@0.1.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\type1-encoding-parser-0.1.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"type1_encoding_parser","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\type1-encoding-parser-0.1.1\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libtype1_encoding_parser-201ac5f96a9ce9f4.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#adobe-cmap-parser@0.4.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\adobe-cmap-parser-0.4.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"adobe_cmap_parser","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\adobe-cmap-parser-0.4.1\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libadobe_cmap_parser-2fb18fea4b0423bd.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#lopdf@0.38.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\lopdf-0.38.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"lopdf","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\lopdf-0.38.0\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\liblopdf-96ec63f4d6dfe4ec.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#hyper-rustls@0.27.7","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hyper-rustls-0.27.7\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hyper_rustls","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hyper-rustls-0.27.7\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["aws-lc-rs","http1","http2","tls12"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libhyper_rustls-442747b2f622ad19.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#yasna@0.6.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\yasna-0.6.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"yasna","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\yasna-0.6.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std","time"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libyasna-592c5e6f7f0a821f.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustls-platform-verifier@0.7.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rustls-platform-verifier-0.7.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rustls_platform_verifier","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rustls-platform-verifier-0.7.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\librustls_platform_verifier-44a281431fc3effd.rmeta"],"executable":null,"fresh":true}
|
||||
@@ -401,27 +393,58 @@
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#euclid@0.20.14","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\euclid-0.20.14\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"euclid","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\euclid-0.20.14\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libeuclid-77c725ca1c7ecf92.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#chrono@0.4.44","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\chrono-0.4.44\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"chrono","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\chrono-0.4.44\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","clock","iana-time-zone","now","std","winapi","windows-link"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libchrono-a1c5ebdfa7e069d3.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#pem@3.0.6","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\pem-3.0.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"pem","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\pem-3.0.6\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libpem-9e665af3a5faf1e5.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tokio-stream@0.1.18","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tokio-stream-0.1.18\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tokio_stream","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tokio-stream-0.1.18\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","time"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libtokio_stream-142473c63aba5805.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures-executor@0.3.32","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-executor-0.3.32\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures_executor","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-executor-0.3.32\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libfutures_executor-56eb70f9fd314626.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#postscript@0.14.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\postscript-0.14.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"postscript","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\postscript-0.14.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libpostscript-b9e1b5d853a6c51c.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tokio-stream@0.1.18","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tokio-stream-0.1.18\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tokio_stream","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tokio-stream-0.1.18\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","time"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libtokio_stream-142473c63aba5805.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cff-parser@0.1.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cff-parser-0.1.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cff_parser","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cff-parser-0.1.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libcff_parser-a64bf256d0781dd7.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#postscript@0.14.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\postscript-0.14.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"postscript","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\postscript-0.14.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libpostscript-b9e1b5d853a6c51c.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ego-tree@0.11.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ego-tree-0.11.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ego_tree","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ego-tree-0.11.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libego_tree-d1d3bc97d658842a.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#matchit@0.8.4","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\matchit-0.8.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"matchit","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\matchit-0.8.4\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libmatchit-0e2571a127366946.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#axum-server@0.8.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\axum-server-0.8.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"axum_server","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\axum-server-0.8.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["arc-swap","default","rustls","rustls-pki-types","tls-rustls","tls-rustls-no-provider","tokio-rustls"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libaxum_server-b84a6bca95efa31d.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#epub@2.1.5","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\epub-2.1.5\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"epub","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\epub-2.1.5\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libepub-7ebd1526aa73a464.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#eframe@0.34.2","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\eframe-0.34.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"eframe","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\eframe-0.34.2\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default_fonts","glow"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libeframe-dfa2146c898fe457.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#reqwest@0.13.3","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\reqwest-0.13.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"reqwest","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\reqwest-0.13.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["__rustls","__rustls-aws-lc-rs","__tls","blocking","charset","default","default-tls","http2","json","multipart","rustls","system-proxy"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libreqwest-fb84093128e5ee1a.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.102","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\anyhow-1.0.102\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"anyhow","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\anyhow-1.0.102\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libanyhow-a00e9488178bba05.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rfd@0.17.2","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rfd-0.17.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rfd","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rfd-0.17.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","pollster","wayland","wayland-backend","wayland-client","wayland-protocols","xdg-portal"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\librfd-3390acd60434068c.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#urlencoding@2.1.3","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\urlencoding-2.1.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"urlencoding","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\urlencoding-2.1.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\liburlencoding-8dcd52793f7a626f.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#open@5.3.5","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\open-5.3.5\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"open","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\open-5.3.5\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libopen-40ab44c0d376787b.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#scraper@0.27.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\scraper-0.27.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"scraper","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\scraper-0.27.0\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","errors","main"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libscraper-432fa5b9fef3c3a8.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures@0.3.32","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-0.3.32\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-0.3.32\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","async-await","default","executor","futures-executor","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libfutures-a597fd48cfacada4.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#lopdf@0.40.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\lopdf-0.40.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"lopdf","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\lopdf-0.40.0\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["chrono","default","jiff","rayon","time"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\liblopdf-c9b5e07883fc12a7.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rcgen@0.14.8","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rcgen-0.14.8\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rcgen","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rcgen-0.14.8\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["crypto","default","pem","ring"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\librcgen-9a7f49a9d4e35ce1.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ollama-rs@0.3.4","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ollama-rs-0.3.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ollama_rs","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ollama-rs-0.3.4\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","stream","tokio","tokio-stream"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libollama_rs-065566bdf438bcdd.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#lopdf@0.40.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\lopdf-0.40.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"lopdf","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\lopdf-0.40.0\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["chrono","default","jiff","rayon","time"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\liblopdf-c9b5e07883fc12a7.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#reqwest@0.13.3","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\reqwest-0.13.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"reqwest","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\reqwest-0.13.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["__rustls","__rustls-aws-lc-rs","__tls","blocking","charset","default","default-tls","http2","json","multipart","rustls","system-proxy"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libreqwest-fb84093128e5ee1a.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#pdf-extract@0.10.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\pdf-extract-0.10.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"pdf_extract","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\pdf-extract-0.10.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libpdf_extract-d070f809b874b312.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#axum@0.8.9","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\axum-0.8.9\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"axum","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\axum-0.8.9\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","form","http1","json","matched-path","multipart","original-uri","query","tokio","tower-log","tracing","ws"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libaxum-02e6147dd2d9ba73.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rcgen@0.14.8","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rcgen-0.14.8\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rcgen","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rcgen-0.14.8\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["crypto","default","pem","ring"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\librcgen-9a7f49a9d4e35ce1.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"path+file:///C:/RustProjects/AiRust#0.1.0","manifest_path":"C:\\RustProjects\\AiRust\\Cargo.toml","target":{"kind":["bin"],"crate_types":["bin"],"name":"AiRust-cli","src_path":"C:\\RustProjects\\AiRust\\src\\main.rs","edition":"2021","doc":true,"doctest":false,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":true},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libAiRust_cli-c25f9b01acca98af.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"path+file:///C:/RustProjects/AiRust#0.1.0","manifest_path":"C:\\RustProjects\\AiRust\\Cargo.toml","target":{"kind":["bin"],"crate_types":["bin"],"name":"AiRust-cli","src_path":"C:\\RustProjects\\AiRust\\src\\main.rs","edition":"2021","doc":true,"doctest":false,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libAiRust_cli-b7a731d0588a4807.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"build-finished","success":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#scraper@0.27.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\scraper-0.27.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"scraper","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\scraper-0.27.0\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","errors","main"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libscraper-432fa5b9fef3c3a8.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#axum-server@0.8.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\axum-server-0.8.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"axum_server","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\axum-server-0.8.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["arc-swap","default","rustls","rustls-pki-types","tls-rustls","tls-rustls-no-provider","tokio-rustls"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libaxum_server-b84a6bca95efa31d.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#epub@2.1.5","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\epub-2.1.5\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"epub","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\epub-2.1.5\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libepub-7ebd1526aa73a464.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rfd@0.17.2","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rfd-0.17.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rfd","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rfd-0.17.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","pollster","wayland","wayland-backend","wayland-client","wayland-protocols","xdg-portal"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\librfd-3390acd60434068c.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.102","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\anyhow-1.0.102\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"anyhow","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\anyhow-1.0.102\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libanyhow-a00e9488178bba05.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#open@5.3.5","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\open-5.3.5\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"open","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\open-5.3.5\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libopen-40ab44c0d376787b.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#urlencoding@2.1.3","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\urlencoding-2.1.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"urlencoding","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\urlencoding-2.1.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\liburlencoding-8dcd52793f7a626f.rmeta"],"executable":null,"fresh":true}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#bitflags@1.3.2","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\bitflags-1.3.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"bitflags","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\bitflags-1.3.2\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libbitflags-67af214d84423122.rmeta"],"executable":null,"fresh":false}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\lazy_static-1.5.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"lazy_static","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\lazy_static-1.5.0\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\liblazy_static-38837c81b0533351.rmeta"],"executable":null,"fresh":false}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-result@0.1.2","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-result-0.1.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_result","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-result-0.1.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libwindows_result-eea0e1f295d453cb.rmeta"],"executable":null,"fresh":false}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#dasp_sample@0.11.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dasp_sample-0.11.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"dasp_sample","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dasp_sample-0.11.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libdasp_sample-ddf292d7d72922ac.rmeta"],"executable":null,"fresh":false}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\byteorder-1.5.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"byteorder","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\byteorder-1.5.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libbyteorder-4f2bf0fa23c320bf.rmeta"],"executable":null,"fresh":false}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#hound@3.5.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hound-3.5.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hound","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hound-3.5.1\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libhound-be10cfd4325f564c.rmeta"],"executable":null,"fresh":false}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#arrayvec@0.7.6","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\arrayvec-0.7.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"arrayvec","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\arrayvec-0.7.6\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libarrayvec-5067b87bf9838760.rmeta"],"executable":null,"fresh":false}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#claxon@0.4.3","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\claxon-0.4.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"claxon","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\claxon-0.4.3\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libclaxon-1f24983031850f09.rmeta"],"executable":null,"fresh":false}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ogg@0.8.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ogg-0.8.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ogg","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ogg-0.8.0\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libogg-5bdc2b6b53392690.rmeta"],"executable":null,"fresh":false}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#polycool@0.4.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\polycool-0.4.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"polycool","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\polycool-0.4.0\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libpolycool-075490056b854418.rmeta"],"executable":null,"fresh":false}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-core@0.54.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-core-0.54.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_core","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-core-0.54.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libwindows_core-7434de2f0226698e.rmeta"],"executable":null,"fresh":false}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#lewton@0.10.2","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\lewton-0.10.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"lewton","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\lewton-0.10.2\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","ogg"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\liblewton-c262ad10cc53a181.rmeta"],"executable":null,"fresh":false}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#symphonia-core@0.5.5","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\symphonia-core-0.5.5\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"symphonia_core","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\symphonia-core-0.5.5\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libsymphonia_core-67cf50bf711c7fb3.rmeta"],"executable":null,"fresh":false}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#kurbo@0.13.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\kurbo-0.13.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"kurbo","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\kurbo-0.13.1\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libkurbo-a9038610e191cc7a.rmeta"],"executable":null,"fresh":false}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#peniko@0.6.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\peniko-0.6.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"peniko","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\peniko-0.6.1\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["bytemuck","std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libpeniko-f1a4d2a4bbd7d974.rmeta"],"executable":null,"fresh":false}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#symphonia-metadata@0.5.5","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\symphonia-metadata-0.5.5\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"symphonia_metadata","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\symphonia-metadata-0.5.5\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libsymphonia_metadata-0ff107bff21095ad.rmeta"],"executable":null,"fresh":false}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#symphonia-bundle-mp3@0.5.5","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\symphonia-bundle-mp3-0.5.5\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"symphonia_bundle_mp3","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\symphonia-bundle-mp3-0.5.5\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["mp3"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libsymphonia_bundle_mp3-b61efcc9c3799463.rmeta"],"executable":null,"fresh":false}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#symphonia@0.5.5","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\symphonia-0.5.5\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"symphonia","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\symphonia-0.5.5\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["mp3","symphonia-bundle-mp3"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libsymphonia-c3490041fd2f999b.rmeta"],"executable":null,"fresh":false}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#vello_common@0.0.6","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\vello_common-0.0.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"vello_common","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\vello_common-0.0.6\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libvello_common-5a4d5c54d77365fd.rmeta"],"executable":null,"fresh":false}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#vello_cpu@0.0.6","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\vello_cpu-0.0.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"vello_cpu","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\vello_cpu-0.0.6\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["f32_pipeline","std","u8_pipeline"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libvello_cpu-4c6d374d5e03c9a6.rmeta"],"executable":null,"fresh":false}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#epaint@0.34.2","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\epaint-0.34.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"epaint","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\epaint-0.34.2\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["bytemuck","default_fonts","epaint_default_fonts"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libepaint-777d7039dd05a84f.rmeta"],"executable":null,"fresh":false}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#egui@0.34.2","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\egui-0.34.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"egui","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\egui-0.34.2\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["bytemuck","default_fonts"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libegui-b1f7337f4d21d61a.rmeta"],"executable":null,"fresh":false}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#egui_glow@0.34.2","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\egui_glow-0.34.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"egui_glow","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\egui_glow-0.34.2\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libegui_glow-7026d07527fadeac.rmeta"],"executable":null,"fresh":false}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#egui-winit@0.34.2","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\egui-winit-0.34.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"egui_winit","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\egui-winit-0.34.2\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["arboard","bytemuck","clipboard","links","smithay-clipboard","webbrowser"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libegui_winit-4412b9cae0f9b3e0.rmeta"],"executable":null,"fresh":false}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#eframe@0.34.2","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\eframe-0.34.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"eframe","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\eframe-0.34.2\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default_fonts","glow"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libeframe-ba8a096851bbd4ee.rmeta"],"executable":null,"fresh":false}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows@0.54.0","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-0.54.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-0.54.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["Win32","Win32_Devices","Win32_Devices_Properties","Win32_Foundation","Win32_Media","Win32_Media_Audio","Win32_Media_KernelStreaming","Win32_Media_Multimedia","Win32_Security","Win32_System","Win32_System_Com","Win32_System_Com_StructuredStorage","Win32_System_SystemServices","Win32_System_Threading","Win32_System_Variant","Win32_UI","Win32_UI_Shell","Win32_UI_Shell_PropertiesSystem","default"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libwindows-1b43aae9b5bec48f.rmeta"],"executable":null,"fresh":false}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cpal@0.15.3","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cpal-0.15.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cpal","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cpal-0.15.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\libcpal-4b7be17be3cb2d01.rmeta"],"executable":null,"fresh":false}
|
||||
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rodio@0.20.1","manifest_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rodio-0.20.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rodio","src_path":"C:\\Users\\USER-PC\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rodio-0.20.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["claxon","default","flac","hound","lewton","mp3","symphonia","symphonia-mp3","vorbis","wav"],"filenames":["C:\\RustProjects\\AiRust\\target\\debug\\deps\\librodio-458aa5f5bd91d79f.rmeta"],"executable":null,"fresh":false}
|
||||
{"reason":"compiler-message","package_id":"path+file:///C:/RustProjects/AiRust#0.1.0","manifest_path":"C:\\RustProjects\\AiRust\\Cargo.toml","target":{"kind":["bin"],"crate_types":["bin"],"name":"AiRust-cli","src_path":"C:\\RustProjects\\AiRust\\src\\main.rs","edition":"2021","doc":true,"doctest":false,"test":true},"message":{"$message_type":"diagnostic","message":"mismatched types","code":{"code":"E0308","explanation":"Expected type did not match the received type.\n\nErroneous code examples:\n\n```compile_fail,E0308\nfn plus_one(x: i32) -> i32 {\n x + 1\n}\n\nplus_one(\"Not a number\");\n// ^^^^^^^^^^^^^^ expected `i32`, found `&str`\n\nif \"Not a bool\" {\n// ^^^^^^^^^^^^ expected `bool`, found `&str`\n}\n\nlet x: f32 = \"Not a float\";\n// --- ^^^^^^^^^^^^^ expected `f32`, found `&str`\n// |\n// expected due to this\n```\n\nThis error occurs when an expression was used in a place where the compiler\nexpected an expression of a different type. It can occur in several cases, the\nmost common being when calling a function and passing an argument which has a\ndifferent type than the matching type in the function declaration.\n"},"level":"error","spans":[{"file_name":"src\\tts.rs","byte_start":3266,"byte_end":3279,"line_start":102,"line_end":102,"column_start":16,"column_end":29,"is_primary":true,"text":[{"text":" if let Ok(mut guard) = self.process.lock().await {","highlight_start":16,"highlight_end":29}],"label":"expected `MutexGuard<'_, Option<Child>>`, found `Result<_, _>`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"src\\tts.rs","byte_start":3282,"byte_end":3307,"line_start":102,"line_end":102,"column_start":32,"column_end":57,"is_primary":false,"text":[{"text":" if let Ok(mut guard) = self.process.lock().await {","highlight_start":32,"highlight_end":57}],"label":"this expression has type `tokio::sync::MutexGuard<'_, std::option::Option<std::process::Child>>`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"expected struct `tokio::sync::MutexGuard<'_, std::option::Option<std::process::Child>>`\n found enum `Result<_, _>`","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[91merror[E0308]\u001b[0m\u001b[1m\u001b[97m: mismatched types\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0msrc\\tts.rs:102:16\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m102\u001b[0m \u001b[1m\u001b[96m|\u001b[0m if let Ok(mut guard) = self.process.lock().await {\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[91m^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[96m-------------------------\u001b[0m \u001b[1m\u001b[96mthis expression has type `tokio::sync::MutexGuard<'_, std::option::Option<std::process::Child>>`\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[91m|\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[91mexpected `MutexGuard<'_, Option<Child>>`, found `Result<_, _>`\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m= \u001b[0m\u001b[1m\u001b[97mnote\u001b[0m: expected struct `\u001b[1m\u001b[35mtokio::sync::MutexGuard<'_, std::option::Option<std::process::Child>>\u001b[0m`\n found enum `\u001b[1m\u001b[35mResult<_, _>\u001b[0m`\n\n"}}
|
||||
{"reason":"compiler-message","package_id":"path+file:///C:/RustProjects/AiRust#0.1.0","manifest_path":"C:\\RustProjects\\AiRust\\Cargo.toml","target":{"kind":["bin"],"crate_types":["bin"],"name":"AiRust-cli","src_path":"C:\\RustProjects\\AiRust\\src\\main.rs","edition":"2021","doc":true,"doctest":false,"test":true},"message":{"$message_type":"diagnostic","message":"mismatched types","code":{"code":"E0308","explanation":"Expected type did not match the received type.\n\nErroneous code examples:\n\n```compile_fail,E0308\nfn plus_one(x: i32) -> i32 {\n x + 1\n}\n\nplus_one(\"Not a number\");\n// ^^^^^^^^^^^^^^ expected `i32`, found `&str`\n\nif \"Not a bool\" {\n// ^^^^^^^^^^^^ expected `bool`, found `&str`\n}\n\nlet x: f32 = \"Not a float\";\n// --- ^^^^^^^^^^^^^ expected `f32`, found `&str`\n// |\n// expected due to this\n```\n\nThis error occurs when an expression was used in a place where the compiler\nexpected an expression of a different type. It can occur in several cases, the\nmost common being when calling a function and passing an argument which has a\ndifferent type than the matching type in the function declaration.\n"},"level":"error","spans":[{"file_name":"src\\tts.rs","byte_start":3266,"byte_end":3279,"line_start":102,"line_end":102,"column_start":16,"column_end":29,"is_primary":true,"text":[{"text":" if let Ok(mut guard) = self.process.lock().await {","highlight_start":16,"highlight_end":29}],"label":"expected `MutexGuard<'_, Option<Child>>`, found `Result<_, _>`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"src\\tts.rs","byte_start":3282,"byte_end":3307,"line_start":102,"line_end":102,"column_start":32,"column_end":57,"is_primary":false,"text":[{"text":" if let Ok(mut guard) = self.process.lock().await {","highlight_start":32,"highlight_end":57}],"label":"this expression has type `tokio::sync::MutexGuard<'_, std::option::Option<std::process::Child>>`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"expected struct `tokio::sync::MutexGuard<'_, std::option::Option<std::process::Child>>`\n found enum `Result<_, _>`","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[91merror[E0308]\u001b[0m\u001b[1m\u001b[97m: mismatched types\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0msrc\\tts.rs:102:16\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m102\u001b[0m \u001b[1m\u001b[96m|\u001b[0m if let Ok(mut guard) = self.process.lock().await {\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[91m^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[96m-------------------------\u001b[0m \u001b[1m\u001b[96mthis expression has type `tokio::sync::MutexGuard<'_, std::option::Option<std::process::Child>>`\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[91m|\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[91mexpected `MutexGuard<'_, Option<Child>>`, found `Result<_, _>`\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m= \u001b[0m\u001b[1m\u001b[97mnote\u001b[0m: expected struct `\u001b[1m\u001b[35mtokio::sync::MutexGuard<'_, std::option::Option<std::process::Child>>\u001b[0m`\n found enum `\u001b[1m\u001b[35mResult<_, _>\u001b[0m`\n\n"}}
|
||||
{"reason":"compiler-message","package_id":"path+file:///C:/RustProjects/AiRust#0.1.0","manifest_path":"C:\\RustProjects\\AiRust\\Cargo.toml","target":{"kind":["bin"],"crate_types":["bin"],"name":"AiRust-cli","src_path":"C:\\RustProjects\\AiRust\\src\\main.rs","edition":"2021","doc":true,"doctest":false,"test":true},"message":{"$message_type":"diagnostic","message":"mismatched types","code":{"code":"E0308","explanation":"Expected type did not match the received type.\n\nErroneous code examples:\n\n```compile_fail,E0308\nfn plus_one(x: i32) -> i32 {\n x + 1\n}\n\nplus_one(\"Not a number\");\n// ^^^^^^^^^^^^^^ expected `i32`, found `&str`\n\nif \"Not a bool\" {\n// ^^^^^^^^^^^^ expected `bool`, found `&str`\n}\n\nlet x: f32 = \"Not a float\";\n// --- ^^^^^^^^^^^^^ expected `f32`, found `&str`\n// |\n// expected due to this\n```\n\nThis error occurs when an expression was used in a place where the compiler\nexpected an expression of a different type. It can occur in several cases, the\nmost common being when calling a function and passing an argument which has a\ndifferent type than the matching type in the function declaration.\n"},"level":"error","spans":[{"file_name":"src\\tts.rs","byte_start":3720,"byte_end":3733,"line_start":121,"line_end":121,"column_start":16,"column_end":29,"is_primary":true,"text":[{"text":" if let Ok(mut guard) = self.process.lock() {","highlight_start":16,"highlight_end":29}],"label":"expected future, found `Result<_, _>`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"src\\tts.rs","byte_start":3736,"byte_end":3755,"line_start":121,"line_end":121,"column_start":32,"column_end":51,"is_primary":false,"text":[{"text":" if let Ok(mut guard) = self.process.lock() {","highlight_start":32,"highlight_end":51}],"label":"this expression has type `impl Future<Output = MutexGuard<'_, Option<Child>>>`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"expected opaque type `impl futures::Future<Output = tokio::sync::MutexGuard<'_, std::option::Option<std::process::Child>>>`\n found enum `Result<_, _>`","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"the full name for the type has been written to 'C:\\RustProjects\\AiRust\\target\\debug\\deps\\AiRust_cli-f57e2bf83e6ee1b1.long-type-17919565921730022056.txt'","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"consider using `--verbose` to print the full type name to the console","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[91merror[E0308]\u001b[0m\u001b[1m\u001b[97m: mismatched types\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0msrc\\tts.rs:121:16\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m121\u001b[0m \u001b[1m\u001b[96m|\u001b[0m if let Ok(mut guard) = self.process.lock() {\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[91m^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[96m-------------------\u001b[0m \u001b[1m\u001b[96mthis expression has type `impl Future<Output = MutexGuard<'_, Option<Child>>>`\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[91m|\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[91mexpected future, found `Result<_, _>`\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m= \u001b[0m\u001b[1m\u001b[97mnote\u001b[0m: expected opaque type `\u001b[1m\u001b[35mimpl futures::Future<Output = tokio::sync::MutexGuard<'_, std::option::Option<std::process::Child>>>\u001b[0m`\n found enum `\u001b[1m\u001b[35mResult<_, _>\u001b[0m`\n \u001b[1m\u001b[96m= \u001b[0m\u001b[1m\u001b[97mnote\u001b[0m: the full name for the type has been written to 'C:\\RustProjects\\AiRust\\target\\debug\\deps\\AiRust_cli-f57e2bf83e6ee1b1.long-type-17919565921730022056.txt'\n \u001b[1m\u001b[96m= \u001b[0m\u001b[1m\u001b[97mnote\u001b[0m: consider using `--verbose` to print the full type name to the console\n\n"}}
|
||||
{"reason":"compiler-message","package_id":"path+file:///C:/RustProjects/AiRust#0.1.0","manifest_path":"C:\\RustProjects\\AiRust\\Cargo.toml","target":{"kind":["bin"],"crate_types":["bin"],"name":"AiRust-cli","src_path":"C:\\RustProjects\\AiRust\\src\\main.rs","edition":"2021","doc":true,"doctest":false,"test":true},"message":{"$message_type":"diagnostic","message":"mismatched types","code":{"code":"E0308","explanation":"Expected type did not match the received type.\n\nErroneous code examples:\n\n```compile_fail,E0308\nfn plus_one(x: i32) -> i32 {\n x + 1\n}\n\nplus_one(\"Not a number\");\n// ^^^^^^^^^^^^^^ expected `i32`, found `&str`\n\nif \"Not a bool\" {\n// ^^^^^^^^^^^^ expected `bool`, found `&str`\n}\n\nlet x: f32 = \"Not a float\";\n// --- ^^^^^^^^^^^^^ expected `f32`, found `&str`\n// |\n// expected due to this\n```\n\nThis error occurs when an expression was used in a place where the compiler\nexpected an expression of a different type. It can occur in several cases, the\nmost common being when calling a function and passing an argument which has a\ndifferent type than the matching type in the function declaration.\n"},"level":"error","spans":[{"file_name":"src\\tts.rs","byte_start":3720,"byte_end":3733,"line_start":121,"line_end":121,"column_start":16,"column_end":29,"is_primary":true,"text":[{"text":" if let Ok(mut guard) = self.process.lock() {","highlight_start":16,"highlight_end":29}],"label":"expected future, found `Result<_, _>`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"src\\tts.rs","byte_start":3736,"byte_end":3755,"line_start":121,"line_end":121,"column_start":32,"column_end":51,"is_primary":false,"text":[{"text":" if let Ok(mut guard) = self.process.lock() {","highlight_start":32,"highlight_end":51}],"label":"this expression has type `impl Future<Output = MutexGuard<'_, Option<Child>>>`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"expected opaque type `impl futures::Future<Output = tokio::sync::MutexGuard<'_, std::option::Option<std::process::Child>>>`\n found enum `Result<_, _>`","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"the full name for the type has been written to 'C:\\RustProjects\\AiRust\\target\\debug\\deps\\AiRust_cli-d63c8ae25b7497b6.long-type-2304988224397254490.txt'","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"consider using `--verbose` to print the full type name to the console","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[91merror[E0308]\u001b[0m\u001b[1m\u001b[97m: mismatched types\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0msrc\\tts.rs:121:16\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m121\u001b[0m \u001b[1m\u001b[96m|\u001b[0m if let Ok(mut guard) = self.process.lock() {\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[91m^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[96m-------------------\u001b[0m \u001b[1m\u001b[96mthis expression has type `impl Future<Output = MutexGuard<'_, Option<Child>>>`\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[91m|\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[91mexpected future, found `Result<_, _>`\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m= \u001b[0m\u001b[1m\u001b[97mnote\u001b[0m: expected opaque type `\u001b[1m\u001b[35mimpl futures::Future<Output = tokio::sync::MutexGuard<'_, std::option::Option<std::process::Child>>>\u001b[0m`\n found enum `\u001b[1m\u001b[35mResult<_, _>\u001b[0m`\n \u001b[1m\u001b[96m= \u001b[0m\u001b[1m\u001b[97mnote\u001b[0m: the full name for the type has been written to 'C:\\RustProjects\\AiRust\\target\\debug\\deps\\AiRust_cli-d63c8ae25b7497b6.long-type-2304988224397254490.txt'\n \u001b[1m\u001b[96m= \u001b[0m\u001b[1m\u001b[97mnote\u001b[0m: consider using `--verbose` to print the full type name to the console\n\n"}}
|
||||
{"reason":"compiler-message","package_id":"path+file:///C:/RustProjects/AiRust#0.1.0","manifest_path":"C:\\RustProjects\\AiRust\\Cargo.toml","target":{"kind":["bin"],"crate_types":["bin"],"name":"AiRust-cli","src_path":"C:\\RustProjects\\AiRust\\src\\main.rs","edition":"2021","doc":true,"doctest":false,"test":true},"message":{"$message_type":"diagnostic","message":"For more information about this error, try `rustc --explain E0308`.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[1m\u001b[97mFor more information about this error, try `rustc --explain E0308`.\u001b[0m\n"}}
|
||||
{"reason":"compiler-message","package_id":"path+file:///C:/RustProjects/AiRust#0.1.0","manifest_path":"C:\\RustProjects\\AiRust\\Cargo.toml","target":{"kind":["bin"],"crate_types":["bin"],"name":"AiRust-cli","src_path":"C:\\RustProjects\\AiRust\\src\\main.rs","edition":"2021","doc":true,"doctest":false,"test":true},"message":{"$message_type":"diagnostic","message":"For more information about this error, try `rustc --explain E0308`.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[1m\u001b[97mFor more information about this error, try `rustc --explain E0308`.\u001b[0m\n"}}
|
||||
{"reason":"build-finished","success":false}
|
||||
|
||||
Reference in New Issue
Block a user