feat: 优化 Cookie 同步策略并增强身份码状态提示

- 将 CookieCloud 同步间隔从 30 分钟缩短至 10 分钟,提高同步频率
- 在 BiliCookie store 初始化时立即执行一次检查,强制尝试从 CookieCloud 同步
- 新增弹幕客户端启动失败时的错误通知提示
- 在管理页面加载时检测身份码失效状态并显示错误提示
- 优化邮箱验证状态检查时机,延迟 500ms 执行避免初始化冲突
- 自动注册 NTable 组件到全
This commit is contained in:
2025-11-29 19:05:15 +08:00
parent 6bccb4a0f4
commit 8e2fdb10f5
12 changed files with 1282 additions and 2126 deletions

View File

@@ -15,7 +15,7 @@ export const USER_INFO_CACHE_KEY = 'cache.bilibili.userInfo'
// 检查周期 (毫秒) // 检查周期 (毫秒)
const REGULAR_CHECK_INTERVAL = 60 * 1000 // 每分钟检查一次 Cookie 有效性 const REGULAR_CHECK_INTERVAL = 60 * 1000 // 每分钟检查一次 Cookie 有效性
const CLOUD_SYNC_INTERVAL_CHECKS = 30 // 每 30 次常规检查后 (约 30 分钟) 同步一次 CookieCloud const CLOUD_SYNC_INTERVAL_CHECKS = 10 // 每 10 次常规检查后 (约 10 分钟) 同步一次 CookieCloud
// 用户信息缓存有效期 (毫秒) // 用户信息缓存有效期 (毫秒)
const USER_INFO_CACHE_DURATION = 5 * 60 * 1000 // 缓存 5 分钟 const USER_INFO_CACHE_DURATION = 5 * 60 * 1000 // 缓存 5 分钟
@@ -381,6 +381,9 @@ export const useBiliCookie = defineStore('biliCookie', () => {
_checkIntervalId = setInterval(check, REGULAR_CHECK_INTERVAL) _checkIntervalId = setInterval(check, REGULAR_CHECK_INTERVAL)
info(`[BiliCookie] 定时检查已启动,周期: ${REGULAR_CHECK_INTERVAL / 1000}`) info(`[BiliCookie] 定时检查已启动,周期: ${REGULAR_CHECK_INTERVAL / 1000}`)
// 立即执行一次检查,强制尝试从 CookieCloud 同步
await check(true)
info('[BiliCookie] Store 初始化完成') info('[BiliCookie] Store 初始化完成')
} }

2
src/components.d.ts vendored
View File

@@ -49,6 +49,7 @@ declare module 'vue' {
NSpin: typeof import('naive-ui')['NSpin'] NSpin: typeof import('naive-ui')['NSpin']
NStatistic: typeof import('naive-ui')['NStatistic'] NStatistic: typeof import('naive-ui')['NStatistic']
NSwitch: typeof import('naive-ui')['NSwitch'] NSwitch: typeof import('naive-ui')['NSwitch']
NTable: typeof import('naive-ui')['NTable']
NTag: typeof import('naive-ui')['NTag'] NTag: typeof import('naive-ui')['NTag']
NText: typeof import('naive-ui')['NText'] NText: typeof import('naive-ui')['NText']
NTime: typeof import('naive-ui')['NTime'] NTime: typeof import('naive-ui')['NTime']
@@ -117,6 +118,7 @@ declare global {
const NSpin: typeof import('naive-ui')['NSpin'] const NSpin: typeof import('naive-ui')['NSpin']
const NStatistic: typeof import('naive-ui')['NStatistic'] const NStatistic: typeof import('naive-ui')['NStatistic']
const NSwitch: typeof import('naive-ui')['NSwitch'] const NSwitch: typeof import('naive-ui')['NSwitch']
const NTable: typeof import('naive-ui')['NTable']
const NTag: typeof import('naive-ui')['NTag'] const NTag: typeof import('naive-ui')['NTag']
const NText: typeof import('naive-ui')['NText'] const NText: typeof import('naive-ui')['NText']
const NTime: typeof import('naive-ui')['NTime'] const NTime: typeof import('naive-ui')['NTime']

View File

@@ -95,6 +95,14 @@ export const useWebFetcher = defineStore('WebFetcher', () => {
} }
let danmakuResult = await connectDanmakuClient(type, directAuthInfo) let danmakuResult = await connectDanmakuClient(type, directAuthInfo)
if (!danmakuResult?.success) {
window.$notification?.create({
title: '弹幕客户端启动失败',
content: danmakuResult?.message || '无法连接到弹幕服务器',
type: 'error',
duration: 5000,
})
}
while (!danmakuResult?.success) { while (!danmakuResult?.success) {
console.log(`${prefix.value}弹幕客户端启动失败, 5秒后重试`) console.log(`${prefix.value}弹幕客户端启动失败, 5秒后重试`)
await new Promise(resolve => setTimeout(resolve, 5000)) await new Promise(resolve => setTimeout(resolve, 5000))

View File

@@ -50,7 +50,7 @@ import { computed, h, onMounted, onUnmounted, ref, watch } from 'vue'
import APlayer from 'vue3-aplayer' import APlayer from 'vue3-aplayer'
import { RouterLink, useRoute } from 'vue-router' import { RouterLink, useRoute } from 'vue-router'
import { cookie, isLoadingAccount, useAccount } from '@/api/account' import { cookie, isLoadingAccount, useAccount } from '@/api/account'
import { ThemeType } from '@/api/api-models' import { BiliAuthCodeStatusType, ThemeType } from '@/api/api-models'
import { QueryGetAPI } from '@/api/query' import { QueryGetAPI } from '@/api/query'
import RegisterAndLogin from '@/components/RegisterAndLogin.vue' import RegisterAndLogin from '@/components/RegisterAndLogin.vue'
import { ACCOUNT_API_URL, availableAPIs, selectedAPIKey } from '@/data/constants' import { ACCOUNT_API_URL, availableAPIs, selectedAPIKey } from '@/data/constants'
@@ -315,13 +315,13 @@ const menuOptions = computed(() => {
label: () => !isBiliVerified.value label: () => !isBiliVerified.value
? '弹幕机' ? '弹幕机'
: h(NTooltip, {}, { : h(NTooltip, {}, {
trigger: () => h( trigger: () => h(
RouterLink, RouterLink,
{ to: { name: 'manage-danmuji' } }, { to: { name: 'manage-danmuji' } },
{ default: () => '弹幕机' }, { default: () => '弹幕机' },
), ),
default: () => '兼容 blivechat 样式 (其实就是直接用的 blivechat 组件', default: () => '兼容 blivechat 样式 (其实就是直接用的 blivechat 组件',
}), }),
key: 'manage-danmuji', key: 'manage-danmuji',
disabled: !isBiliVerified.value, disabled: !isBiliVerified.value,
icon: renderIcon(Lottery24Filled), icon: renderIcon(Lottery24Filled),
@@ -331,17 +331,17 @@ const menuOptions = computed(() => {
label: () => !isBiliVerified.value label: () => !isBiliVerified.value
? '点播' ? '点播'
: h( : h(
NTooltip, NTooltip,
{}, {},
{ {
trigger: () => h( trigger: () => h(
RouterLink, RouterLink,
{ to: { name: 'manage-liveRequest' } }, { to: { name: 'manage-liveRequest' } },
{ default: () => '点播' }, { default: () => '点播' },
), ),
default: () => '歌势之类用的, 可以用来点歌或者跳舞什么的', default: () => '歌势之类用的, 可以用来点歌或者跳舞什么的',
}, },
), ),
key: 'manage-liveRequest', key: 'manage-liveRequest',
icon: renderIcon(MusicalNote), icon: renderIcon(MusicalNote),
disabled: !isBiliVerified.value, disabled: !isBiliVerified.value,
@@ -351,10 +351,10 @@ const menuOptions = computed(() => {
label: () => !isBiliVerified.value label: () => !isBiliVerified.value
? '抽奖' ? '抽奖'
: h( : h(
RouterLink, RouterLink,
{ to: { name: 'manage-liveLottery' } }, { to: { name: 'manage-liveLottery' } },
{ default: () => '抽奖' }, { default: () => '抽奖' },
), ),
key: 'manage-liveLottery', key: 'manage-liveLottery',
icon: renderIcon(Lottery24Filled), icon: renderIcon(Lottery24Filled),
disabled: !isBiliVerified.value, disabled: !isBiliVerified.value,
@@ -364,17 +364,17 @@ const menuOptions = computed(() => {
label: () => !isBiliVerified.value label: () => !isBiliVerified.value
? '点歌' ? '点歌'
: h( : h(
NTooltip, NTooltip,
{}, {},
{ {
trigger: () => h( trigger: () => h(
RouterLink, RouterLink,
{ to: { name: 'manage-musicRequest' } }, { to: { name: 'manage-musicRequest' } },
{ default: () => '点歌机' }, { default: () => '点歌机' },
), ),
default: () => '就是传统的点歌机, 发弹幕后播放指定的歌曲', default: () => '就是传统的点歌机, 发弹幕后播放指定的歌曲',
}, },
), ),
key: 'manage-musicRequest', key: 'manage-musicRequest',
icon: renderIcon(MusicalNote), icon: renderIcon(MusicalNote),
disabled: !isBiliVerified.value, disabled: !isBiliVerified.value,
@@ -384,10 +384,10 @@ const menuOptions = computed(() => {
label: () => !isBiliVerified.value label: () => !isBiliVerified.value
? '排队' ? '排队'
: h( : h(
RouterLink, RouterLink,
{ to: { name: 'manage-liveQueue' } }, { to: { name: 'manage-liveQueue' } },
{ default: () => '排队' }, { default: () => '排队' },
), ),
key: 'manage-liveQueue', key: 'manage-liveQueue',
icon: renderIcon(PeopleQueue24Filled), icon: renderIcon(PeopleQueue24Filled),
disabled: !isBiliVerified.value, disabled: !isBiliVerified.value,
@@ -397,10 +397,10 @@ const menuOptions = computed(() => {
label: () => !isBiliVerified.value label: () => !isBiliVerified.value
? '读弹幕' ? '读弹幕'
: h( : h(
RouterLink, RouterLink,
{ to: { name: 'manage-speech' } }, { to: { name: 'manage-speech' } },
{ default: () => '读弹幕' }, { default: () => '读弹幕' },
), ),
key: 'manage-speech', key: 'manage-speech',
icon: renderIcon(TabletSpeaker24Filled), icon: renderIcon(TabletSpeaker24Filled),
disabled: !isBiliVerified.value, disabled: !isBiliVerified.value,
@@ -649,16 +649,21 @@ function gotoAuthPage() {
} }
onMounted(() => { onMounted(() => {
// 检查邮箱验证状态
if (accountInfo.value?.isEmailVerified === false) {
if ((accountInfo.value?.nextSendEmailTime ?? -1) <= 0) {
canResendEmail.value = true
}
}
if (selectedAPIKey.value != 'main') { if (selectedAPIKey.value != 'main') {
message.warning('你当前使用的是备用API节点, 可能会速度比较慢') message.warning('你当前使用的是备用API节点, 可能会速度比较慢')
} }
setTimeout(() => {
// 检查邮箱验证状态
if (accountInfo.value?.isEmailVerified === false) {
if ((accountInfo.value?.nextSendEmailTime ?? -1) <= 0) {
canResendEmail.value = true
}
}
if (accountInfo.value?.biliAuthCodeStatus == BiliAuthCodeStatusType.Inactive) {
message.error('你的身份码已失效, 请及时更新', { duration: 5000, closable: true })
}
}, 500);
}) })
onUnmounted(() => { onUnmounted(() => {
@@ -682,10 +687,8 @@ onUnmounted(() => {
<template #extra> <template #extra>
<NSpace align="center" justify="center"> <NSpace align="center" justify="center">
<!-- 主题切换开关 --> <!-- 主题切换开关 -->
<NSwitch <NSwitch :default-value="!isDarkMode"
:default-value="!isDarkMode" @update:value="(value) => (themeType = value ? ThemeType.Light : ThemeType.Dark)">
@update:value="(value) => (themeType = value ? ThemeType.Light : ThemeType.Dark)"
>
<template #checked> <template #checked>
<NIcon :component="Sunny" /> <NIcon :component="Sunny" />
</template> </template>
@@ -693,10 +696,8 @@ onUnmounted(() => {
<NIcon :component="Moon" /> <NIcon :component="Moon" />
</template> </template>
</NSwitch> </NSwitch>
<NButton <NButton size="small" type="primary"
size="small" type="primary" @click="$router.push({ name: 'user-index', params: { id: accountInfo?.name } })">
@click="$router.push({ name: 'user-index', params: { id: accountInfo?.name } })"
>
回到展示页 回到展示页
</NButton> </NButton>
</NSpace> </NSpace>
@@ -707,11 +708,9 @@ onUnmounted(() => {
<!-- 主布局部分 --> <!-- 主布局部分 -->
<NLayout has-sider style="height: calc(100vh - 50px)"> <NLayout has-sider style="height: calc(100vh - 50px)">
<!-- 侧边导航栏 --> <!-- 侧边导航栏 -->
<NLayoutSider <NLayoutSider v-if="accountInfo?.isEmailVerified" ref="sider" bordered show-trigger collapse-mode="width"
v-if="accountInfo?.isEmailVerified" ref="sider" bordered show-trigger collapse-mode="width"
:default-collapsed="windowWidth < 750" :collapsed-width="64" :width="180" :native-scrollbar="false" :default-collapsed="windowWidth < 750" :collapsed-width="64" :width="180" :native-scrollbar="false"
:scrollbar-props="{ trigger: 'none', style: {} }" :class="{ 'sider-collapsed': width < 150 }" :scrollbar-props="{ trigger: 'none', style: {} }" :class="{ 'sider-collapsed': width < 150 }">
>
<!-- 顶部功能按钮区 --> <!-- 顶部功能按钮区 -->
<NSpace vertical style="margin-top: 16px" align="center"> <NSpace vertical style="margin-top: 16px" align="center">
<NSpace justify="center"> <NSpace justify="center">
@@ -746,14 +745,12 @@ onUnmounted(() => {
</NSpace> </NSpace>
<!-- 主导航菜单 --> <!-- 主导航菜单 -->
<NMenu <NMenu v-model:expanded-keys="expandedKeys" class="manage-sider-menu" style="margin-top: 12px"
v-model:expanded-keys="expandedKeys" class="manage-sider-menu" style="margin-top: 12px"
:disabled="accountInfo?.isEmailVerified !== true" :disabled="accountInfo?.isEmailVerified !== true"
:default-value="($route.meta.parent as string) ?? $route.name?.toString()" :default-value="($route.meta.parent as string) ?? $route.name?.toString()"
:default-expanded-keys="['group-common', 'group-data', 'group-tools', 'group-danmaku', 'group-favorites']" :default-expanded-keys="['group-common', 'group-data', 'group-tools', 'group-danmaku', 'group-favorites']"
:collapsed-width="64" :collapsed-icon-size="22" :icon-size="16" :root-indent="10" :indent="12" :collapsed-width="64" :collapsed-icon-size="22" :icon-size="16" :root-indent="10" :indent="12"
:options="menuOptions" :options="menuOptions" />
/>
<!-- 底部信息区 --> <!-- 底部信息区 -->
<NSpace v-if="width > 150" justify="center" align="center" vertical> <NSpace v-if="width > 150" justify="center" align="center" vertical>
@@ -772,8 +769,7 @@ onUnmounted(() => {
<NDivider style="margin-bottom: 8px;" /> <NDivider style="margin-bottom: 8px;" />
<NFlex justify="center" align="center"> <NFlex justify="center" align="center">
<NText <NText
:style="`font-size: 12px; text-align: center;color: ${isDarkMode ? '#555' : '#c0c0c0'};visibility: ${width < 180 ? 'hidden' : 'visible'}`" :style="`font-size: 12px; text-align: center;color: ${isDarkMode ? '#555' : '#c0c0c0'};visibility: ${width < 180 ? 'hidden' : 'visible'}`">
>
By Megghy By Megghy
</NText> </NText>
</NFlex> </NFlex>
@@ -782,10 +778,10 @@ onUnmounted(() => {
<!-- 内容区域 --> <!-- 内容区域 -->
<NLayout> <NLayout>
<!-- 主内容区域 --> <!-- 主内容区域 -->
<NScrollbar :style="`height: calc(100vh - var(--vtsuru-header-height) - ${aplayerHeight}px)`" :x-scrollable="true"> <NScrollbar :style="`height: calc(100vh - var(--vtsuru-header-height) - ${aplayerHeight}px)`"
:x-scrollable="true">
<NLayoutContent <NLayoutContent
content-style="margin: var(--vtsuru-content-padding); margin-right: calc(var(--vtsuru-content-padding) + 4px); padding-bottom: 32px;min-width: 370px" content-style="margin: var(--vtsuru-content-padding); margin-right: calc(var(--vtsuru-content-padding) + 4px); padding-bottom: 32px;min-width: 370px">
>
<NElement> <NElement>
<!-- 已验证邮箱的用户显示内容 --> <!-- 已验证邮箱的用户显示内容 -->
<RouterView v-if="accountInfo?.isEmailVerified" v-slot="{ Component, route }"> <RouterView v-if="accountInfo?.isEmailVerified" v-slot="{ Component, route }">
@@ -840,10 +836,8 @@ onUnmounted(() => {
</NAlert> </NAlert>
<NSpace> <NSpace>
<NButton <NButton type="primary" :disabled="!canResendEmail" style="min-width: 140px;"
type="primary" :disabled="!canResendEmail" style="min-width: 140px;" @click="resendEmail">
@click="resendEmail"
>
<template #icon> <template #icon>
<NIcon> <NIcon>
<Mail24Filled /> <Mail24Filled />
@@ -852,10 +846,8 @@ onUnmounted(() => {
重新发送验证邮件 重新发送验证邮件
</NButton> </NButton>
<NTag v-if="!canResendEmail" type="warning" round> <NTag v-if="!canResendEmail" type="warning" round>
<NCountdown <NCountdown :duration="(accountInfo?.nextSendEmailTime ?? 0) - Date.now()"
:duration="(accountInfo?.nextSendEmailTime ?? 0) - Date.now()" @finish="canResendEmail = true" />
@finish="canResendEmail = true"
/>
后可重新发送 后可重新发送
</NTag> </NTag>
</NSpace> </NSpace>
@@ -884,19 +876,15 @@ onUnmounted(() => {
</NScrollbar> </NScrollbar>
<!-- 音乐播放器区域 --> <!-- 音乐播放器区域 -->
<NLayoutFooter <NLayoutFooter v-if="isPlayerVisible"
v-if="isPlayerVisible"
:style="`height: ${aplayerHeight}px; overflow: hidden; transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);`" :style="`height: ${aplayerHeight}px; overflow: hidden; transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);`"
class="music-player-footer" class="music-player-footer">
> <NCard ref="musicPlayerCardRef" :bordered="false" embedded
<NCard
ref="musicPlayerCardRef" :bordered="false" embedded
:content-style="isPlayerMinimized ? 'padding: 0' : undefined" size="small" class="music-player-card" style=" :content-style="isPlayerMinimized ? 'padding: 0' : undefined" size="small" class="music-player-card" style="
margin: 8px; margin: 8px;
border-radius: 12px; border-radius: 12px;
backdrop-filter: blur(10px); backdrop-filter: blur(10px);
" ">
>
<!-- 播放器头部控制栏 --> <!-- 播放器头部控制栏 -->
<template #header> <template #header>
<NFlex justify="space-between" align="center" style="padding: 0;"> <NFlex justify="space-between" align="center" style="padding: 0;">
@@ -905,19 +893,15 @@ onUnmounted(() => {
<NText :depth="2" style="font-size: 13px; font-weight: 500;"> <NText :depth="2" style="font-size: 13px; font-weight: 500;">
音乐播放器 音乐播放器
</NText> </NText>
<NTag <NTag v-if="currentPlayingInfo && !isPlayerMinimized"
v-if="currentPlayingInfo && !isPlayerMinimized"
:type="currentPlayingInfo.type === 'request' ? 'success' : 'info'" size="small" round :type="currentPlayingInfo.type === 'request' ? 'success' : 'info'" size="small" round
:bordered="false" style="font-size: 11px; padding: 2px 8px;" :bordered="false" style="font-size: 11px; padding: 2px 8px;">
>
{{ currentPlayingInfo.info }} {{ currentPlayingInfo.info }}
</NTag> </NTag>
<template v-if="isPlayerMinimized"> <template v-if="isPlayerMinimized">
<NText <NText v-if="musicRquestStore.currentMusic.title"
v-if="musicRquestStore.currentMusic.title" style="font-size: 13px; max-width: 250px; margin-left: 12px" :ellipsis="{ tooltip: true }">
style="font-size: 13px; max-width: 250px; margin-left: 12px" :ellipsis="{ tooltip: true }"
>
{{ musicRquestStore.currentMusic.title }} - {{ musicRquestStore.currentMusic.artist }} {{ musicRquestStore.currentMusic.title }} - {{ musicRquestStore.currentMusic.artist }}
</NText> </NText>
<NText v-else depth="3" style="font-size: 13px; margin-left: 12px"> <NText v-else depth="3" style="font-size: 13px; margin-left: 12px">
@@ -928,27 +912,21 @@ onUnmounted(() => {
<NFlex align="center" size="small"> <NFlex align="center" size="small">
<template v-if="isPlayerMinimized"> <template v-if="isPlayerMinimized">
<NTag <NTag v-if="musicRquestStore.waitingMusics.length > 0" type="warning" size="small" round
v-if="musicRquestStore.waitingMusics.length > 0" type="warning" size="small" round :bordered="false">
:bordered="false"
>
{{ musicRquestStore.waitingMusics.length }} {{ musicRquestStore.waitingMusics.length }}
</NTag> </NTag>
<NButton <NButton circle size="tiny" tertiary :disabled="musicRquestStore.aplayerMusics.length === 0"
circle size="tiny" tertiary :disabled="musicRquestStore.aplayerMusics.length === 0" @click.stop="togglePlay">
@click.stop="togglePlay"
>
<template #icon> <template #icon>
<NIcon :component="aplayer?.audio?.paused !== false ? Play : Pause" size="14" /> <NIcon :component="aplayer?.audio?.paused !== false ? Play : Pause" size="14" />
</template> </template>
</NButton> </NButton>
<NButton <NButton circle size="tiny" tertiary
circle size="tiny" tertiary
:disabled="musicRquestStore.waitingMusics.length === 0 && musicRquestStore.aplayerMusics.length <= 1" :disabled="musicRquestStore.waitingMusics.length === 0 && musicRquestStore.aplayerMusics.length <= 1"
@click.stop="onNextMusic" @click.stop="onNextMusic">
>
<template #icon> <template #icon>
<NIcon :component="PlayForward" size="14" /> <NIcon :component="PlayForward" size="14" />
</template> </template>
@@ -957,10 +935,8 @@ onUnmounted(() => {
<NTooltip> <NTooltip>
<template #trigger> <template #trigger>
<NButton <NButton :type="isPlayerMinimized ? 'primary' : 'default'" tertiary size="small" circle
:type="isPlayerMinimized ? 'primary' : 'default'" tertiary size="small" circle @click="togglePlayerMinimize">
@click="togglePlayerMinimize"
>
<template #icon> <template #icon>
<NIcon :component="isPlayerMinimized ? ChevronUp : ChevronDown" /> <NIcon :component="isPlayerMinimized ? ChevronUp : ChevronDown" />
</template> </template>
@@ -977,13 +953,11 @@ onUnmounted(() => {
<NFlex align="center" :wrap="false" style="gap: 12px;"> <NFlex align="center" :wrap="false" style="gap: 12px;">
<!-- APlayer组件 --> <!-- APlayer组件 -->
<div style="flex: 1; min-width: 280px;"> <div style="flex: 1; min-width: 280px;">
<APlayer <APlayer ref="aplayer" v-model:music="musicRquestStore.currentMusic" v-model:volume="playerVolume"
ref="aplayer" v-model:music="musicRquestStore.currentMusic" v-model:volume="playerVolume"
v-model:shuffle="musicRquestStore.settings.shuffle" v-model:shuffle="musicRquestStore.settings.shuffle"
v-model:repeat="musicRquestStore.settings.repeat" :list="musicRquestStore.aplayerMusics" v-model:repeat="musicRquestStore.settings.repeat" :list="musicRquestStore.aplayerMusics"
list-max-height="200" mutex list-folded style="border-radius: 8px;" list-max-height="200" mutex list-folded style="border-radius: 8px;"
@ended="musicRquestStore.onMusicEnd" @play="musicRquestStore.onMusicPlay" @ended="musicRquestStore.onMusicEnd" @play="musicRquestStore.onMusicPlay" />
/>
</div> </div>
<!-- 右侧控制面板 --> <!-- 右侧控制面板 -->
@@ -996,10 +970,8 @@ onUnmounted(() => {
<NFlex size="small" justify="center"> <NFlex size="small" justify="center">
<NTooltip> <NTooltip>
<template #trigger> <template #trigger>
<NButton <NButton circle secondary size="small" :disabled="musicRquestStore.aplayerMusics.length === 0"
circle secondary size="small" :disabled="musicRquestStore.aplayerMusics.length === 0" @click="onPreviousMusic">
@click="onPreviousMusic"
>
<template #icon> <template #icon>
<NIcon :component="PlayBack" /> <NIcon :component="PlayBack" />
</template> </template>
@@ -1010,10 +982,8 @@ onUnmounted(() => {
<NTooltip> <NTooltip>
<template #trigger> <template #trigger>
<NButton <NButton circle type="primary" size="small"
circle type="primary" size="small" :disabled="musicRquestStore.aplayerMusics.length === 0" @click="togglePlay">
:disabled="musicRquestStore.aplayerMusics.length === 0" @click="togglePlay"
>
<template #icon> <template #icon>
<NIcon :component="aplayer?.audio?.paused !== false ? Play : Pause" /> <NIcon :component="aplayer?.audio?.paused !== false ? Play : Pause" />
</template> </template>
@@ -1024,11 +994,9 @@ onUnmounted(() => {
<NTooltip> <NTooltip>
<template #trigger> <template #trigger>
<NButton <NButton circle secondary size="small"
circle secondary size="small"
:disabled="musicRquestStore.waitingMusics.length === 0 && musicRquestStore.aplayerMusics.length <= 1" :disabled="musicRquestStore.waitingMusics.length === 0 && musicRquestStore.aplayerMusics.length <= 1"
@click="onNextMusic" @click="onNextMusic">
>
<template #icon> <template #icon>
<NIcon :component="PlayForward" /> <NIcon :component="PlayForward" />
</template> </template>
@@ -1045,17 +1013,13 @@ onUnmounted(() => {
队列管理 队列管理
</NText> </NText>
<NFlex vertical size="small" align="center"> <NFlex vertical size="small" align="center">
<NTag <NTag :bordered="false" :type="musicRquestStore.waitingMusics.length > 0 ? 'warning' : 'info'"
:bordered="false" :type="musicRquestStore.waitingMusics.length > 0 ? 'warning' : 'info'" size="small" round style="min-width: 80px; text-align: center;">
size="small" round style="min-width: 80px; text-align: center;"
>
等待: {{ musicRquestStore.waitingMusics.length }} 等待: {{ musicRquestStore.waitingMusics.length }}
</NTag> </NTag>
<NTag <NTag :bordered="false" type="success" size="small" round
:bordered="false" type="success" size="small" round style="min-width: 80px; text-align: center;">
style="min-width: 80px; text-align: center;"
>
歌单: {{ musicRquestStore.originMusics.length }} 歌单: {{ musicRquestStore.originMusics.length }}
</NTag> </NTag>
@@ -1081,10 +1045,8 @@ onUnmounted(() => {
音量 音量
</NText> </NText>
</NFlex> </NFlex>
<NSlider <NSlider v-model:value="playerVolume" :min="0" :max="1" :step="0.01" style="width: 80px;"
v-model:value="playerVolume" :min="0" :max="1" :step="0.01" style="width: 80px;" :tooltip="false" size="small" />
:tooltip="false" size="small"
/>
<NText depth="3" style="font-size: 11px;"> <NText depth="3" style="font-size: 11px;">
{{ Math.round(playerVolume * 100) }}% {{ Math.round(playerVolume * 100) }}%
</NText> </NText>
@@ -1105,8 +1067,7 @@ onUnmounted(() => {
<!-- 未登录时显示的登录/注册界面 --> <!-- 未登录时显示的登录/注册界面 -->
<template v-else> <template v-else>
<NLayoutContent <NLayoutContent style="
style="
display: flex; display: flex;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
@@ -1120,16 +1081,13 @@ onUnmounted(() => {
top: 0; top: 0;
left: 0; left: 0;
overflow: auto; overflow: auto;
" :class="isDarkMode ? 'login-dark-bg' : ''" " :class="isDarkMode ? 'login-dark-bg' : ''">
>
<template v-if="!isLoadingAccount"> <template v-if="!isLoadingAccount">
<NCard class="login-card" :bordered="false"> <NCard class="login-card" :bordered="false">
<template #header> <template #header>
<NFlex justify="center" align="center" style="padding: 12px 0;"> <NFlex justify="center" align="center" style="padding: 12px 0;">
<NText <NText strong
strong style="font-size: 1.8rem; text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); background-image: linear-gradient(to right, #36d1dc, #5b86e5); -webkit-background-clip: text; -webkit-text-fill-color: transparent;">
style="font-size: 1.8rem; text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); background-image: linear-gradient(to right, #36d1dc, #5b86e5); -webkit-background-clip: text; -webkit-text-fill-color: transparent;"
>
VTSURU CENTER VTSURU CENTER
</NText> </NText>
</NFlex> </NFlex>
@@ -1176,12 +1134,8 @@ onUnmounted(() => {
<NSpin :loading="isLoadingAccount" size="large"> <NSpin :loading="isLoadingAccount" size="large">
<NText>正在请求账户数据...</NText> <NText>正在请求账户数据...</NText>
</NSpin> </NSpin>
<NAlert <NAlert v-if="showAPISwitchDialog" type="warning" style="margin-top: 20px; max-width: 400px;"
v-if="showAPISwitchDialog" title="加载时间较长">
type="warning"
style="margin-top: 20px; max-width: 400px;"
title="加载时间较长"
>
<NSpace vertical> <NSpace vertical>
<NText>当前API响应较慢是否切换到备用API</NText> <NText>当前API响应较慢是否切换到备用API</NText>
<NFlex justify="end" :size="8"> <NFlex justify="end" :size="8">
@@ -1202,167 +1156,168 @@ onUnmounted(() => {
</template> </template>
<style scoped> <style scoped>
.login-dark-bg { .login-dark-bg {
background: linear-gradient(135deg, rgba(30, 30, 35, 0.9) 0%, rgba(20, 20, 25, 0.95) 100%) !important; background: linear-gradient(135deg, rgba(30, 30, 35, 0.9) 0%, rgba(20, 20, 25, 0.95) 100%) !important;
}
.login-card {
max-width: 520px;
width: 90%;
min-width: 300px;
border-radius: 12px;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
margin: 16px;
}
.loading-card {
min-width: 280px;
width: 90%;
max-width: 400px;
border-radius: 12px;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
margin: 16px;
}
/* 音乐播放器样式 */
.music-player-footer {
background: var(--body-color);
}
.music-player-card {
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.music-player-card:hover {
transform: translateY(-1px);
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15) !important;
}
.music-control-panel {
display: flex;
gap: 12px;
align-items: flex-start;
flex-wrap: wrap;
min-width: 300px;
}
/* 响应式设计 */
@media (max-width: 768px) {
.music-control-panel {
min-width: auto;
flex-direction: row;
justify-content: space-around;
align-items: center;
gap: 8px;
width: 100%;
} }
.login-card { .music-control-panel>div {
max-width: 520px; min-width: auto !important;
width: 90%; flex: 1;
min-width: 300px;
border-radius: 12px;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
margin: 16px;
} }
}
@media (max-width: 480px) {
.login-card,
.loading-card { .loading-card {
min-width: 280px; width: 95%;
width: 90%; margin: 8px;
max-width: 400px;
border-radius: 12px;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
margin: 16px;
}
/* 音乐播放器样式 */
.music-player-footer {
background: var(--body-color);
} }
.music-player-card { .music-player-card {
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); margin: 4px !important;
}
.music-player-card:hover {
transform: translateY(-1px);
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15) !important;
} }
.music-control-panel { .music-control-panel {
display: flex; flex-direction: column;
gap: 12px;
align-items: flex-start;
flex-wrap: wrap;
min-width: 300px;
}
/* 响应式设计 */
@media (max-width: 768px) {
.music-control-panel {
min-width: auto;
flex-direction: row;
justify-content: space-around;
align-items: center;
gap: 8px;
width: 100%;
}
.music-control-panel>div {
min-width: auto !important;
flex: 1;
}
}
@media (max-width: 480px) {
.login-card,
.loading-card {
width: 95%;
margin: 8px;
}
.music-player-card {
margin: 4px !important;
}
.music-control-panel {
flex-direction: column;
align-items: center;
gap: 6px;
width: 100%;
}
.music-control-panel>div {
width: 100% !important;
min-width: auto !important;
}
}
/* 播放器按钮悬停效果 */
.music-player-card .n-button {
transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.music-player-card .n-button:hover {
transform: translateY(-1px);
}
/* 音量滑块样式 */
.music-player-card .n-slider {
transition: all 0.2s ease;
}
.music-player-card .n-slider:hover {
transform: scale(1.02);
}
/* 标签动画 */
.music-player-card .n-tag {
transition: all 0.2s ease;
}
.music-player-card .n-tag:hover {
transform: scale(1.05);
}
/* 侧边栏菜单收藏按钮与紧凑样式 */
:deep(.manage-sider-menu .menu-fav) {
opacity: 0;
width: 0;
margin-left: 0;
overflow: hidden;
transition: opacity 0.15s ease, width 0.15s ease, margin-left 0.15s ease;
pointer-events: none;
/* 不阻挡文字区域点击 */
display: inline-flex;
align-items: center; align-items: center;
justify-content: center; gap: 6px;
width: 100%;
} }
:deep(.n-menu-item) { .music-control-panel>div {
height: 36px; width: 100% !important;
min-width: auto !important;
} }
}
:deep(.manage-sider-menu .n-menu-item:hover .menu-fav), /* 播放器按钮悬停效果 */
:deep(.manage-sider-menu .menu-fav.active) { .music-player-card .n-button {
opacity: 1; transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
width: 18px; }
margin-left: 6px;
pointer-events: auto;
}
:deep(.manage-sider-menu .menu-fav .n-button) { .music-player-card .n-button:hover {
padding: 0; transform: translateY(-1px);
height: 18px; }
width: 18px;
}
:deep(.sider-collapsed .manage-sider-menu .n-menu-item .n-menu-item-content) { /* 音量滑块样式 */
display: flex; .music-player-card .n-slider {
justify-content: center; transition: all 0.2s ease;
} }
:deep(.n-menu-item) {
margin-top: 3;
}
/* 侧边栏收起时隐藏group标题 */ .music-player-card .n-slider:hover {
:deep(.sider-collapsed .n-menu-item-group-title) { transform: scale(1.02);
display: none; }
}
/* 侧边栏收起时禁用收藏按钮样式,避免元素偏移 */ /* 标签动画 */
.sider-collapsed :deep(.manage-sider-menu .menu-fav) { .music-player-card .n-tag {
display: none !important; transition: all 0.2s ease;
} }
.music-player-card .n-tag:hover {
transform: scale(1.05);
}
/* 侧边栏菜单收藏按钮与紧凑样式 */
:deep(.manage-sider-menu .menu-fav) {
opacity: 0;
width: 0;
margin-left: 0;
overflow: hidden;
transition: opacity 0.15s ease, width 0.15s ease, margin-left 0.15s ease;
pointer-events: none;
/* 不阻挡文字区域点击 */
display: inline-flex;
align-items: center;
justify-content: center;
}
:deep(.n-menu-item) {
height: 36px;
}
:deep(.manage-sider-menu .n-menu-item:hover .menu-fav),
:deep(.manage-sider-menu .menu-fav.active) {
opacity: 1;
width: 18px;
margin-left: 6px;
pointer-events: auto;
}
:deep(.manage-sider-menu .menu-fav .n-button) {
padding: 0;
height: 18px;
width: 18px;
}
:deep(.sider-collapsed .manage-sider-menu .n-menu-item .n-menu-item-content) {
display: flex;
justify-content: center;
}
:deep(.n-menu-item) {
margin-top: 3;
}
/* 侧边栏收起时隐藏group标题 */
:deep(.sider-collapsed .n-menu-item-group-title) {
display: none;
}
/* 侧边栏收起时禁用收藏按钮样式,避免元素偏移 */
.sider-collapsed :deep(.manage-sider-menu .menu-fav) {
display: none !important;
}
</style> </style>

File diff suppressed because it is too large Load Diff

View File

@@ -320,6 +320,19 @@ onUnmounted(() => {
{{ CN_HOST }} {{ CN_HOST }}
</NButton>, 访问更快 </NButton>, 访问更快
</NAlert> </NAlert>
<NAlert
v-if="accountInfo?.biliAuthCodeStatus == BiliAuthCodeStatusType.Inactive"
type="error"
title="身份码已失效"
style="width: 100%; margin-top: 12px;"
>
<NFlex justify="space-between" align="center">
<NText>你的身份码已失效, 这会导致无法获取直播间数据.</NText>
<NButton size="small" type="error" @click="bindBiliCodeModalVisiable = true">
更新身份码
</NButton>
</NFlex>
</NAlert>
<NDivider /> <NDivider />
<NFlex <NFlex
justify="center" justify="center"

File diff suppressed because it is too large Load Diff

View File

@@ -1,5 +1,4 @@
<script setup lang="ts"> <script setup lang="ts">
import type { DataTableColumns } from 'naive-ui'
import { Info24Filled } from '@vicons/fluent' import { Info24Filled } from '@vicons/fluent'
import { addDays, endOfDay, format, startOfDay } from 'date-fns' import { addDays, endOfDay, format, startOfDay } from 'date-fns'
import { BarChart, LineChart } from 'echarts/charts' import { BarChart, LineChart } from 'echarts/charts'
@@ -13,13 +12,12 @@ import {
} from 'echarts/components' } from 'echarts/components'
import { use } from 'echarts/core' import { use } from 'echarts/core'
import { CanvasRenderer } from 'echarts/renderers' import { CanvasRenderer } from 'echarts/renderers'
import { NAlert, NButton, NCard, NDataTable, NDatePicker, NDivider, NEmpty, NIcon, NSpace, NSpin, NText, NTime, NTooltip, useMessage } from 'naive-ui' import { NAlert, NButton, NCard, NDatePicker, NDivider, NEmpty, NIcon, NSpace, NSpin, NText, NTime, NTooltip, useMessage } from 'naive-ui'
import { computed, h, onMounted, ref, watch } from 'vue' import { computed, onMounted, ref, watch } from 'vue'
import VChart from 'vue-echarts' import VChart from 'vue-echarts'
import { useAccount } from '@/api/account' import { useAccount } from '@/api/account'
import { QueryGetAPI } from '@/api/query' import { QueryGetAPI } from '@/api/query'
import { HISTORY_API_URL } from '@/data/constants' import { HISTORY_API_URL } from '@/data/constants'
import { GuidUtils } from '@/Utils'
// 初始化ECharts组件 // 初始化ECharts组件
use([ use([
@@ -64,25 +62,6 @@ interface HistoryUpstatRecordModel {
} }
} }
interface GuardMemberModel {
guardOUId: string
username: string
guardLevel: string
accompanyDays: number
isActive: boolean
lastUpdateTime: string
}
interface GuardStatsModel {
totalCount: number
governorCount: number
admiralCount: number
captainCount: number
avgAccompanyDays: number
maxAccompanyDays: number
lastUpdateTime: string
}
const accountInfo = useAccount() const accountInfo = useAccount()
const message = useMessage() const message = useMessage()
@@ -104,72 +83,6 @@ const upstatLikeOption = ref()
const isLoading = ref(true) const isLoading = ref(true)
// 舰长列表相关
const guardList = ref<GuardMemberModel[]>([])
const guardStats = ref<GuardStatsModel | null>(null)
const guardListLoading = ref(false)
const guardPaginationPage = ref(1)
const guardPaginationPageSize = ref(30)
const guardPagination = computed(() => ({
page: guardPaginationPage.value,
pageSize: guardPaginationPageSize.value,
itemCount: guardList.value.length,
showSizePicker: true,
pageSizes: [10, 20, 30, 50],
onChange: (page: number) => {
guardPaginationPage.value = page
},
onUpdatePageSize: (pageSize: number) => {
guardPaginationPageSize.value = pageSize
guardPaginationPage.value = 1
},
}))
// 舰长列表表格列定义
const guardColumns: DataTableColumns<GuardMemberModel> = [
{
title: 'OUID',
key: 'guardOUId',
width: 250,
ellipsis: {
tooltip: true,
},
render: (row) => {
return h('span', { style: { fontWeight: 'bold' } }, GuidUtils.isGuidFromUserId(row.guardOUId) ? GuidUtils.guidToLong(row.guardOUId) : row.guardOUId)
},
},
{
title: '用户名',
key: 'username',
ellipsis: {
tooltip: true,
},
},
{
title: '等级',
key: 'guardLevel',
width: 80,
render: (row) => {
const colorMap: Record<string, string> = {
总督: '#FF6B9D',
提督: '#C59AFF',
舰长: '#00D1FF',
}
return h(
'span',
{ style: { color: colorMap[row.guardLevel] || '#333', fontWeight: 'bold' } },
row.guardLevel,
)
},
},
{
title: '陪伴天数',
key: 'accompanyDays',
width: 100,
sorter: (a, b) => a.accompanyDays - b.accompanyDays,
},
]
// 统计开始日期 // 统计开始日期
const statisticStartDate = new Date(2023, 10, 4) const statisticStartDate = new Date(2023, 10, 4)
const statisticStartDateTime = statisticStartDate.getTime() const statisticStartDateTime = statisticStartDate.getTime()
@@ -554,38 +467,6 @@ function processUpstatLikeChartOptions() {
upstatLikeOption.value = processUpstatChartOptions('likes', '点赞数') upstatLikeOption.value = processUpstatChartOptions('likes', '点赞数')
} }
/**
* 加载舰长列表
*/
async function loadGuardList() {
guardListLoading.value = true
try {
const [listResponse, statsResponse] = await Promise.all([
QueryGetAPI<GuardMemberModel[]>(
`${HISTORY_API_URL}guards-list?activeOnly=true`,
),
QueryGetAPI<GuardStatsModel>(`${HISTORY_API_URL}guards/stats`),
])
if (listResponse.code === 200) {
guardList.value = listResponse.data
} else {
message.error(`加载舰长列表失败: ${listResponse.message}`)
}
if (statsResponse.code === 200) {
guardStats.value = statsResponse.data
} else {
message.error(`加载舰长统计失败: ${statsResponse.message}`)
}
} catch (err) {
message.error('加载舰长数据失败')
console.error(err)
} finally {
guardListLoading.value = false
}
}
/** /**
* 处理所有图表选项 * 处理所有图表选项
*/ */
@@ -600,7 +481,6 @@ onMounted(async () => {
if (accountInfo.value?.isBiliVerified === true) { if (accountInfo.value?.isBiliVerified === true) {
await getHistory() await getHistory()
processAllChartOptions() processAllChartOptions()
await loadGuardList() // 加载舰长列表
isLoading.value = false isLoading.value = false
} }
}) })
@@ -743,44 +623,6 @@ watch(
class="chart" class="chart"
/> />
<!-- 舰长列表 -->
<NCard
title="当前在舰用户"
size="small"
style="margin-top: 16px"
>
<NSpace
vertical
size="small"
>
<NSpace align="center">
<NButton
type="primary"
:loading="guardListLoading"
@click="loadGuardList"
>
刷新列表
</NButton>
<NText v-if="guardStats">
总计: {{ guardStats.totalCount }} (总督: {{ guardStats.governorCount }}, 提督: {{ guardStats.admiralCount }}, 舰长: {{ guardStats.captainCount }})
</NText>
</NSpace>
<NDataTable
v-if="guardList?.length > 0"
:columns="guardColumns"
:data="guardList"
:pagination="guardPagination"
:bordered="false"
size="small"
/>
<NEmpty
v-else-if="!guardListLoading"
description="暂无在舰用户"
/>
</NSpace>
</NCard>
<NDivider /> <NDivider />
<!-- <NDivider> <!-- <NDivider>
投稿播放量 投稿播放量

View File

@@ -431,7 +431,7 @@ onMounted(() => { })
align="center" align="center"
:gap="16" :gap="16"
> >
<NAlert <NAlert v-if="!accountInfo.eventFetcherState.online"
:type="accountInfo.settings.enableFunctions.includes(FunctionTypes.Point) && accountInfo.eventFetcherState.online :type="accountInfo.settings.enableFunctions.includes(FunctionTypes.Point) && accountInfo.eventFetcherState.online
? 'success' ? 'success'
: 'warning' : 'warning'

View File

@@ -1 +0,0 @@
Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.33s

View File

@@ -1,600 +0,0 @@
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.101","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\proc-macro2-1.0.101\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\proc-macro2-1.0.101\\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","span-locations"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\proc-macro2-83a10d299ad24402\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\proc-macro2-83a10d299ad24402\\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.101","linked_libs":[],"linked_paths":[],"cfgs":["span_locations","wrap_proc_macro"],"env":[],"out_dir":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\proc-macro2-8fafd7c5d4dc3d00\\out"}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#quote@1.0.41","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\quote-1.0.41\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\quote-1.0.41\\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","proc-macro"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\quote-ecade5089d07204f\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\quote-ecade5089d07204f\\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.19","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicode-ident-1.0.19\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unicode_ident","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicode-ident-1.0.19\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libunicode_ident-aa36d2674bcd5328.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libunicode_ident-aa36d2674bcd5328.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.3","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cfg-if-1.0.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cfg_if","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cfg-if-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":[],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libcfg_if-e44b781eeeb5da8a.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libcfg_if-e44b781eeeb5da8a.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\\Megghy\\.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\\Megghy\\.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\windows_x86_64_msvc-a21d0cd880e0be5c\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\windows_x86_64_msvc-a21d0cd880e0be5c\\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\\Megghy\\.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\\Megghy\\.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libautocfg-1fa2b1e7854770da.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libautocfg-1fa2b1e7854770da.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.8.27","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerocopy-0.8.27\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerocopy-0.8.27\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\zerocopy-265a1ccc4a9d346e\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\zerocopy-265a1ccc4a9d346e\\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\\Megghy\\.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\\Megghy\\.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\serde_core-e526bf10887bc435\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\serde_core-e526bf10887bc435\\build_script_build.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_properties_data@2.0.1","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_properties_data-2.0.1\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_properties_data-2.0.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\icu_properties_data-ca168c736a483536\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\icu_properties_data-ca168c736a483536\\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.0.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_normalizer_data-2.0.0\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_normalizer_data-2.0.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\icu_normalizer_data-b4502e787760986a\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\icu_normalizer_data-b4502e787760986a\\build_script_build.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.11","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\parking_lot_core-0.9.11\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\parking_lot_core-0.9.11\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\parking_lot_core-8f0d24a5b39e99b7\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\parking_lot_core-8f0d24a5b39e99b7\\build_script_build.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\stable_deref_trait-1.2.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"stable_deref_trait","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\stable_deref_trait-1.2.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":["alloc","default","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libstable_deref_trait-47605cabb2b91938.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libstable_deref_trait-47605cabb2b91938.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\\Megghy\\.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\\Megghy\\.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\serde-f80103c7e8ec1f3e\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\serde-f80103c7e8ec1f3e\\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.1","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\siphasher-1.0.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"siphasher","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\siphasher-1.0.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":["default","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libsiphasher-268ffd01c010f36a.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libsiphasher-268ffd01c010f36a.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.17","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\thiserror-2.0.17\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\thiserror-2.0.17\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\thiserror-9788ac57011df22f\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\thiserror-9788ac57011df22f\\build_script_build.pdb"],"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\\Megghy\\.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\\Megghy\\.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":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["const_generics"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libsmallvec-a66903f024d7321c.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libsmallvec-a66903f024d7321c.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#siphasher@0.3.11","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\siphasher-0.3.11\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"siphasher","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\siphasher-0.3.11\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libsiphasher-89ccde46981d5362.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libsiphasher-89ccde46981d5362.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#getrandom@0.1.16","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\getrandom-0.1.16\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\getrandom-0.1.16\\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":["std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\getrandom-7b54a4d478cc8bb4\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\getrandom-7b54a4d478cc8bb4\\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\\Megghy\\.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\\Megghy\\.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":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libfnv-1fd4aba68000fa6f.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libfnv-1fd4aba68000fa6f.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\\Megghy\\.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\\Megghy\\.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","rc","result","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\serde_core-dfd5a02ed9679ec9\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\serde_core-dfd5a02ed9679ec9\\build_script_build.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#typeid@1.0.3","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\typeid-1.0.3\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\typeid-1.0.3\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\typeid-456b13624c87acac\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\typeid-456b13624c87acac\\build_script_build.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.6","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\memchr-2.7.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"memchr","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\memchr-2.7.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":["alloc","default","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libmemchr-fd72aef5118043fc.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libmemchr-fd72aef5118043fc.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ident_case@1.0.1","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ident_case-1.0.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ident_case","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ident_case-1.0.1\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libident_case-07a39f5d0f0d5040.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libident_case-07a39f5d0f0d5040.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#strsim@0.11.1","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\strsim-0.11.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"strsim","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\strsim-0.11.1\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libstrsim-f944ecbf1a43185e.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libstrsim-f944ecbf1a43185e.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.15","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\itoa-1.0.15\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"itoa","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\itoa-1.0.15\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libitoa-95638215e24c362b.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libitoa-95638215e24c362b.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\thiserror-1.0.69\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\thiserror-1.0.69\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\thiserror-b6cf77148e1e9b33\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\thiserror-b6cf77148e1e9b33\\build_script_build.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\syn-1.0.109\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\syn-1.0.109\\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":["clone-impls","default","derive","extra-traits","fold","full","parsing","printing","proc-macro","quote"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\syn-598864d5a932060b\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\syn-598864d5a932060b\\build_script_build.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#writeable@0.6.1","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\writeable-0.6.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"writeable","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\writeable-0.6.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libwriteable-ba36e3bc31508b0e.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libwriteable-ba36e3bc31508b0e.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#litemap@0.8.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\litemap-0.8.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"litemap","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\litemap-0.8.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":["alloc"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\liblitemap-833b9f7737372e55.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\liblitemap-833b9f7737372e55.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#erased-serde@0.4.8","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\erased-serde-0.4.8\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\erased-serde-0.4.8\\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"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\erased-serde-b528e80466f880ec\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\erased-serde-b528e80466f880ec\\build_script_build.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#proc-macro-hack@0.5.20+deprecated","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\proc-macro-hack-0.5.20+deprecated\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\proc-macro-hack-0.5.20+deprecated\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\proc-macro-hack-8871a73b5e8d9084\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\proc-macro-hack-8871a73b5e8d9084\\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.145","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_json-1.0.145\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_json-1.0.145\\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","std","unbounded_depth"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\serde_json-36a55eb03a6a8350\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\serde_json-36a55eb03a6a8350\\build_script_build.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.101","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\proc-macro2-1.0.101\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"proc_macro2","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\proc-macro2-1.0.101\\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","span-locations"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libproc_macro2-2da34ce70ad2ddbf.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libproc_macro2-2da34ce70ad2ddbf.rmeta"],"executable":null,"fresh":true}
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#quote@1.0.41","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\quote-4a2d58a879e449fa\\out"}
{"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\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows_x86_64_msvc-0.52.6\\lib"],"cfgs":[],"env":[],"out_dir":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\windows_x86_64_msvc-e8e607e3652a8546\\out"}
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.8.27","linked_libs":[],"linked_paths":[],"cfgs":["zerocopy_core_error_1_81_0","zerocopy_diagnostic_on_unimplemented_1_78_0","zerocopy_generic_bounds_in_const_fn_1_61_0","zerocopy_target_has_atomics_1_60_0","zerocopy_aarch64_simd_1_59_0","zerocopy_panic_in_const_and_vec_try_reserve_1_57_0"],"env":[],"out_dir":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\zerocopy-28ec0d382bcfc0da\\out"}
{"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":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\serde_core-cec4af0fcc561eca\\out"}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.16","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\getrandom-0.2.16\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"getrandom","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\getrandom-0.2.16\\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":["std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libgetrandom-5afab1e0a9e8e9c1.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libgetrandom-5afab1e0a9e8e9c1.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.13","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\lock_api-0.4.13\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\lock_api-0.4.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":["atomic_usize","default"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\lock_api-5de86c30bdcd6951\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\lock_api-5de86c30bdcd6951\\build_script_build.pdb"],"executable":null,"fresh":true}
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_properties_data@2.0.1","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\icu_properties_data-5f2d3d09b3bee03d\\out"}
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_normalizer_data@2.0.0","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\icu_normalizer_data-153ac4042caa43ce\\out"}
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.11","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\parking_lot_core-9ba37945ad05bba4\\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":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\serde-d142b454cd71ff88\\out"}
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.17","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\thiserror-e8c906ac7c9e2975\\out"}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#phf_shared@0.11.3","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf_shared-0.11.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"phf_shared","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf_shared-0.11.3\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libphf_shared-b481784cef760b66.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libphf_shared-b481784cef760b66.rmeta"],"executable":null,"fresh":true}
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#getrandom@0.1.16","linked_libs":["advapi32"],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\getrandom-2eec8801331e52ff\\out"}
{"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":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\serde_core-fe147e9662ad1ec9\\out"}
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#typeid@1.0.3","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\typeid-eb4bd50254e8a08c\\out"}
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109","linked_libs":[],"linked_paths":[],"cfgs":["syn_disable_nightly_tests"],"env":[],"out_dir":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\syn-552c21a14609ba79\\out"}
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\thiserror-4396a7df873958dd\\out"}
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#erased-serde@0.4.8","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\erased-serde-e513fd092cd20c2d\\out"}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#phf_shared@0.8.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf_shared-0.8.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"phf_shared","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf_shared-0.8.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libphf_shared-6a066a23affc58b2.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libphf_shared-6a066a23affc58b2.rmeta"],"executable":null,"fresh":true}
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#proc-macro-hack@0.5.20+deprecated","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\proc-macro-hack-d53715590054363c\\out"}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#phf_shared@0.10.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf_shared-0.10.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"phf_shared","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf_shared-0.10.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libphf_shared-c5eaddf7155b4ac2.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libphf_shared-c5eaddf7155b4ac2.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0","manifest_path":"C:\\Users\\Megghy\\.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\\Megghy\\.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":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libbyteorder-024ef59fcbe92702.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libbyteorder-024ef59fcbe92702.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\\Megghy\\.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\\Megghy\\.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":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libdebug_unreachable-74bd3187e2a6f7b6.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libdebug_unreachable-74bd3187e2a6f7b6.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\\Megghy\\.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\\Megghy\\.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":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libscopeguard-97cda342dff7769d.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libscopeguard-97cda342dff7769d.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.3","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\getrandom-0.3.3\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\getrandom-0.3.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\getrandom-8d3a56a940daf818\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\getrandom-8d3a56a940daf818\\build_script_build.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.100","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\anyhow-1.0.100\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\anyhow-1.0.100\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\anyhow-cf682101c5781909\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\anyhow-cf682101c5781909\\build_script_build.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-link@0.2.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-link-0.2.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_link","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-link-0.2.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libwindows_link-4225a40a2b6f9824.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libwindows_link-4225a40a2b6f9824.rmeta"],"executable":null,"fresh":true}
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.145","linked_libs":[],"linked_paths":[],"cfgs":["fast_arithmetic=\"64\""],"env":[],"out_dir":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\serde_json-401d2048661dd62a\\out"}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ryu@1.0.20","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ryu-1.0.20\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ryu","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ryu-1.0.20\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libryu-00839dfa0d8145d9.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libryu-00839dfa0d8145d9.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#winnow@0.7.13","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\winnow-0.7.13\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"winnow","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\winnow-0.7.13\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libwinnow-a665819e5e19818d.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libwinnow-a665819e5e19818d.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#mac@0.1.1","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\mac-0.1.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"mac","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\mac-0.1.1\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libmac-a035197f393b6c88.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libmac-a035197f393b6c88.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#quote@1.0.41","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\quote-1.0.41\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"quote","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\quote-1.0.41\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libquote-d35587ba3c466973.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libquote-d35587ba3c466973.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\\Megghy\\.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\\Megghy\\.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":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","result","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libserde_core-7fb3f038f9d20e64.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libserde_core-7fb3f038f9d20e64.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.8.27","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerocopy-0.8.27\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zerocopy","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerocopy-0.8.27\\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":["simd"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libzerocopy-e6b433bb86e30dc1.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libzerocopy-e6b433bb86e30dc1.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rand_core-0.6.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rand_core","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rand_core-0.6.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":["alloc","getrandom","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\librand_core-92307ee295862b19.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\librand_core-92307ee295862b19.rmeta"],"executable":null,"fresh":true}
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.13","linked_libs":[],"linked_paths":[],"cfgs":["has_const_fn_trait_bound"],"env":[],"out_dir":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\lock_api-56afa19201392373\\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\\Megghy\\.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\\Megghy\\.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":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libwindows_x86_64_msvc-dff334cdaccbe2d9.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libwindows_x86_64_msvc-dff334cdaccbe2d9.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#getrandom@0.1.16","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\getrandom-0.1.16\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"getrandom","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\getrandom-0.1.16\\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":["std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libgetrandom-653ac68ade521339.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libgetrandom-653ac68ade521339.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\\Megghy\\.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\\Megghy\\.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","rc","result","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libserde_core-926e0cc9dc83936f.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_normalizer_data@2.0.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_normalizer_data-2.0.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"icu_normalizer_data","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_normalizer_data-2.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libicu_normalizer_data-9e8b79f612bd62d0.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libicu_normalizer_data-9e8b79f612bd62d0.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_properties_data@2.0.1","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_properties_data-2.0.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"icu_properties_data","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_properties_data-2.0.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libicu_properties_data-14d851f690ca6aaa.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libicu_properties_data-14d851f690ca6aaa.rmeta"],"executable":null,"fresh":true}
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.3","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\getrandom-a5d0b7a34c55847d\\out"}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#proc-macro-hack@0.5.20+deprecated","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\proc-macro-hack-0.5.20+deprecated\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"proc_macro_hack","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\proc-macro-hack-0.5.20+deprecated\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\proc_macro_hack-87f541cd07a640ab.dll","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\proc_macro_hack-87f541cd07a640ab.dll.lib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\proc_macro_hack-87f541cd07a640ab.dll.exp","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\proc_macro_hack-87f541cd07a640ab.pdb"],"executable":null,"fresh":true}
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.100","linked_libs":[],"linked_paths":[],"cfgs":["std_backtrace"],"env":[],"out_dir":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\anyhow-4ee273a81b0a2856\\out"}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.61.1","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-sys-0.61.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_sys","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-sys-0.61.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["Win32","Win32_Foundation","Win32_Globalization","Win32_Storage","Win32_Storage_FileSystem","Win32_System","Win32_System_Com","Win32_System_Console","Win32_System_SystemInformation","Win32_UI","Win32_UI_Shell","default"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libwindows_sys-55818fe02c29058e.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libwindows_sys-55818fe02c29058e.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\\Megghy\\.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\\Megghy\\.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":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libprecomputed_hash-ad3e503a2d4b5fc3.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libprecomputed_hash-ad3e503a2d4b5fc3.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#toml_parser@1.0.3","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\toml_parser-1.0.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"toml_parser","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\toml_parser-1.0.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":["alloc","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtoml_parser-8420cb5653382f7d.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtoml_parser-8420cb5653382f7d.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futf@0.1.5","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futf-0.1.5\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futf","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futf-0.1.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libfutf-cac79f6b2cb81b5e.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libfutf-cac79f6b2cb81b5e.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\\Megghy\\.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\\Megghy\\.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":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libpercent_encoding-a26ae9a7d810b6cf.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libpercent_encoding-a26ae9a7d810b6cf.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#dtoa@1.0.10","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dtoa-1.0.10\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"dtoa","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dtoa-1.0.10\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libdtoa-6c37dfdd1a51eb81.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libdtoa-6c37dfdd1a51eb81.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#toml_writer@1.0.3","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\toml_writer-1.0.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"toml_writer","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\toml_writer-1.0.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":["alloc","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtoml_writer-eae6eb609e842e68.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtoml_writer-eae6eb609e842e68.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\\Megghy\\.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\\Megghy\\.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":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libutf8_iter-b058ff3b8e9e3578.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libutf8_iter-b058ff3b8e9e3578.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#log@0.4.28","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\log-0.4.28\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"log","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\log-0.4.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\liblog-91f2816bade28490.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\liblog-91f2816bade28490.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\\Megghy\\.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\\Megghy\\.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":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libbitflags-33f2025662c62ed0.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libbitflags-33f2025662c62ed0.rmeta"],"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\\Megghy\\.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\\Megghy\\.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":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libutf8-659377f34a9506b1.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libutf8-659377f34a9506b1.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.3","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\aho-corasick-1.1.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"aho_corasick","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\aho-corasick-1.1.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":["perf-literal","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libaho_corasick-8e3d87ec938f282f.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libaho_corasick-8e3d87ec938f282f.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#indexmap@1.9.3","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\indexmap-1.9.3\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\indexmap-1.9.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":["serde","serde-1"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\indexmap-3b7550c3738b32ff\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\indexmap-3b7550c3738b32ff\\build_script_build.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#convert_case@0.4.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\convert_case-0.4.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"convert_case","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\convert_case-0.4.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libconvert_case-e95cd400574f2c85.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libconvert_case-e95cd400574f2c85.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#matches@0.1.10","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\matches-0.1.10\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"matches","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\matches-0.1.10\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libmatches-cbdd465882925cbe.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libmatches-cbdd465882925cbe.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#alloc-no-stdlib@2.0.4","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\alloc-no-stdlib-2.0.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"alloc_no_stdlib","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\alloc-no-stdlib-2.0.4\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\liballoc_no_stdlib-7fec7e2bbd9358bf.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\liballoc_no_stdlib-7fec7e2bbd9358bf.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unic-char-range@0.9.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unic-char-range-0.9.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unic_char_range","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unic-char-range-0.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":["default"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libunic_char_range-bddfe98893e69bee.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libunic_char_range-bddfe98893e69bee.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.6","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\regex-syntax-0.8.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"regex_syntax","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\regex-syntax-0.8.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":["default","std","unicode","unicode-age","unicode-bool","unicode-case","unicode-gencat","unicode-perl","unicode-script","unicode-segment"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libregex_syntax-7c3e36541a261fc0.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libregex_syntax-7c3e36541a261fc0.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#camino@1.2.1","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\camino-1.2.1\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\camino-1.2.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":["serde1"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\camino-c423bdf40ad54bdf\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\camino-c423bdf40ad54bdf\\build_script_build.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#syn@2.0.106","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\syn-2.0.106\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"syn","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\syn-2.0.106\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libsyn-996d1236f28eaa0c.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libsyn-996d1236f28eaa0c.rmeta"],"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\\Megghy\\.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\\Megghy\\.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":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["simd","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libppv_lite86-dff32b635175c673.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libppv_lite86-dff32b635175c673.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\\Megghy\\.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\\Megghy\\.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":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libwindows_targets-5ffd9c77340ee7db.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libwindows_targets-5ffd9c77340ee7db.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rand_core@0.5.1","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rand_core-0.5.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rand_core","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rand_core-0.5.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":["alloc","getrandom","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\librand_core-8195bbbcb26138ca.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\librand_core-8195bbbcb26138ca.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\syn-1.0.109\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"syn","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\syn-1.0.109\\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":["clone-impls","default","derive","extra-traits","fold","full","parsing","printing","proc-macro","quote"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libsyn-8c85d4b2284a8197.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libsyn-8c85d4b2284a8197.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.13","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\lock_api-0.4.13\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"lock_api","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\lock_api-0.4.13\\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":["atomic_usize","default"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\liblock_api-24b7500ca1def016.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\liblock_api-24b7500ca1def016.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.145","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_json-1.0.145\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serde_json","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_json-1.0.145\\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":["alloc","default","std","unbounded_depth"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libserde_json-346c7e7e7a0b76bc.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libserde_json-346c7e7e7a0b76bc.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#semver@1.0.27","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\semver-1.0.27\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"semver","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\semver-1.0.27\\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","serde","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libsemver-1bf5c3f5db172071.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libsemver-1bf5c3f5db172071.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#toml_datetime@0.7.2","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\toml_datetime-0.7.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"toml_datetime","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\toml_datetime-0.7.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":["alloc","serde","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtoml_datetime-630140765e0d8c83.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtoml_datetime-630140765e0d8c83.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_spanned@1.0.2","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_spanned-1.0.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serde_spanned","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_spanned-1.0.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":["alloc","serde","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libserde_spanned-99783b5b08d3bcf1.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libserde_spanned-99783b5b08d3bcf1.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.3","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\getrandom-0.3.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"getrandom","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\getrandom-0.3.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libgetrandom-07b55300e407b7c2.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libgetrandom-07b55300e407b7c2.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\\Megghy\\.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\\Megghy\\.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":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libdtoa_short-b4d77e52a76a4063.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libdtoa_short-b4d77e52a76a4063.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\\Megghy\\.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\\Megghy\\.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":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libform_urlencoded-5f8656610af918b9.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libform_urlencoded-5f8656610af918b9.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tendril@0.4.3","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tendril-0.4.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tendril","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tendril-0.4.3\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtendril-cc0b9891a41db0d0.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtendril-cc0b9891a41db0d0.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unic-common@0.9.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unic-common-0.9.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unic_common","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unic-common-0.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":["default"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libunic_common-cb9349a28b656c19.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libunic_common-cb9349a28b656c19.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#nodrop@0.1.14","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\nodrop-0.1.14\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"nodrop","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\nodrop-0.1.14\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libnodrop-ef1eba95280b6354.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libnodrop-ef1eba95280b6354.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#winapi-util@0.1.11","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\winapi-util-0.1.11\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"winapi_util","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\winapi-util-0.1.11\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libwinapi_util-586a0b6d09d1c06d.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libwinapi_util-586a0b6d09d1c06d.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unic-char-property@0.9.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unic-char-property-0.9.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unic_char_property","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unic-char-property-0.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libunic_char_property-57d76a80768edcd1.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libunic_char_property-57d76a80768edcd1.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#alloc-stdlib@0.2.2","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\alloc-stdlib-0.2.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"alloc_stdlib","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\alloc-stdlib-0.2.2\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\liballoc_stdlib-1b75cfe1802ed2d8.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\liballoc_stdlib-1b75cfe1802ed2d8.rmeta"],"executable":null,"fresh":true}
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#indexmap@1.9.3","linked_libs":[],"linked_paths":[],"cfgs":["has_std"],"env":[],"out_dir":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\indexmap-603e6ee73fabb567\\out"}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.11","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\regex-automata-0.4.11\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"regex_automata","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\regex-automata-0.4.11\\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":["alloc","dfa-onepass","hybrid","meta","nfa-backtrack","nfa-pikevm","nfa-thompson","perf-inline","perf-literal","perf-literal-multisubstring","perf-literal-substring","std","syntax","unicode","unicode-age","unicode-bool","unicode-case","unicode-gencat","unicode-perl","unicode-script","unicode-segment","unicode-word-boundary"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libregex_automata-5c0bdda10c4d6745.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libregex_automata-5c0bdda10c4d6745.rmeta"],"executable":null,"fresh":true}
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#camino@1.2.1","linked_libs":[],"linked_paths":[],"cfgs":["try_reserve_2","path_buf_deref_mut","os_str_bytes","absolute_path"],"env":[],"out_dir":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\camino-122718623b713191\\out"}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#fxhash@0.2.1","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\fxhash-0.2.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"fxhash","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\fxhash-0.2.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libfxhash-d5d5e5c8fcf8c453.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libfxhash-d5d5e5c8fcf8c453.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#phf@0.8.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf-0.8.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"phf","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf-0.8.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libphf-7763061afb6b20c4.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libphf-7763061afb6b20c4.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#typeid@1.0.3","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\typeid-1.0.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"typeid","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\typeid-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":[],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtypeid-152cccbed56362dd.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtypeid-152cccbed56362dd.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\\Megghy\\.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\\Megghy\\.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":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libequivalent-4698fcfdabe73466.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libequivalent-4698fcfdabe73466.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\\Megghy\\.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\\Megghy\\.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libshlex-27ba53e6f2866fee.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libshlex-27ba53e6f2866fee.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.12.3","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hashbrown-0.12.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hashbrown","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hashbrown-0.12.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":["raw"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libhashbrown-9ef407763b45a5cf.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libhashbrown-9ef407763b45a5cf.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.16.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hashbrown-0.16.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hashbrown","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hashbrown-0.16.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libhashbrown-d9b1a7f30c6b4867.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libhashbrown-d9b1a7f30c6b4867.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#schemars@0.8.22","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\schemars-0.8.22\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\schemars-0.8.22\\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","derive","indexmap","preserve_order","schemars_derive","url","uuid1"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\schemars-2907a07cb5efa803\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\schemars-2907a07cb5efa803\\build_script_build.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#find-msvc-tools@0.1.3","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\find-msvc-tools-0.1.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"find_msvc_tools","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\find-msvc-tools-0.1.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":[],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libfind_msvc_tools-fbfc09967e8bafc7.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libfind_msvc_tools-fbfc09967e8bafc7.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\bytes-1.10.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"bytes","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\bytes-1.10.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":["default","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libbytes-59463c08c307196b.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libbytes-59463c08c307196b.rmeta"],"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\\Megghy\\.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\\Megghy\\.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\serde_derive-dfa22dc561d5a5ca.dll","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\serde_derive-dfa22dc561d5a5ca.dll.lib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\serde_derive-dfa22dc561d5a5ca.dll.exp","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\serde_derive-dfa22dc561d5a5ca.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\\Megghy\\.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\\Megghy\\.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libsynstructure-7e0fd5dbff87fc6e.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libsynstructure-7e0fd5dbff87fc6e.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zerovec-derive@0.11.1","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerovec-derive-0.11.1\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"zerovec_derive","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerovec-derive-0.11.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\zerovec_derive-d115233abba0d8a8.dll","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\zerovec_derive-d115233abba0d8a8.dll.lib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\zerovec_derive-d115233abba0d8a8.dll.exp","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\zerovec_derive-d115233abba0d8a8.pdb"],"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\\Megghy\\.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\\Megghy\\.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\displaydoc-d84e19f648a202c9.dll","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\displaydoc-d84e19f648a202c9.dll.lib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\displaydoc-d84e19f648a202c9.dll.exp","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\displaydoc-d84e19f648a202c9.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rand_chacha@0.3.1","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rand_chacha-0.3.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rand_chacha","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rand_chacha-0.3.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":["std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\librand_chacha-d06f1714f1ca8069.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\librand_chacha-d06f1714f1ca8069.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@2.0.17","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\thiserror-impl-2.0.17\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"thiserror_impl","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\thiserror-impl-2.0.17\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\thiserror_impl-81771d6e0e589556.dll","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\thiserror_impl-81771d6e0e589556.dll.lib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\thiserror_impl-81771d6e0e589556.dll.exp","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\thiserror_impl-81771d6e0e589556.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@1.0.69","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\thiserror-impl-1.0.69\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"thiserror_impl","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\thiserror-impl-1.0.69\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\thiserror_impl-a4128fbac8ac19d9.dll","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\thiserror_impl-a4128fbac8ac19d9.dll.lib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\thiserror_impl-a4128fbac8ac19d9.dll.exp","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\thiserror_impl-a4128fbac8ac19d9.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#darling_core@0.21.3","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\darling_core-0.21.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"darling_core","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\darling_core-0.21.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":["strsim","suggestions"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libdarling_core-840d75c1a3eea14d.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libdarling_core-840d75c1a3eea14d.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rand_chacha@0.2.2","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rand_chacha-0.2.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rand_chacha","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rand_chacha-0.2.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":["std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\librand_chacha-5eda7483a49ce622.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\librand_chacha-5eda7483a49ce622.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rand_pcg@0.2.1","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rand_pcg-0.2.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rand_pcg","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rand_pcg-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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\librand_pcg-62ec11f98588d7a1.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\librand_pcg-62ec11f98588d7a1.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.11","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\parking_lot_core-0.9.11\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"parking_lot_core","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\parking_lot_core-0.9.11\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libparking_lot_core-01824fea60aef088.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libparking_lot_core-01824fea60aef088.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cssparser@0.29.6","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cssparser-0.29.6\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cssparser-0.29.6\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\cssparser-6fe331973bbe8285\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\cssparser-6fe331973bbe8285\\build_script_build.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ctor@0.2.9","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ctor-0.2.9\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"ctor","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ctor-0.2.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\ctor-ae5befdaef229472.dll","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\ctor-ae5befdaef229472.dll.lib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\ctor-ae5befdaef229472.dll.exp","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\ctor-ae5befdaef229472.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#toml@0.9.7","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\toml-0.9.7\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"toml","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\toml-0.9.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":["default","display","parse","serde","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtoml-12669a63bc25f69c.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtoml-12669a63bc25f69c.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cssparser-macros@0.6.1","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cssparser-macros-0.6.1\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"cssparser_macros","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cssparser-macros-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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\cssparser_macros-c6adbca064beb98f.dll","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\cssparser_macros-c6adbca064beb98f.dll.lib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\cssparser_macros-c6adbca064beb98f.dll.exp","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\cssparser_macros-c6adbca064beb98f.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#derive_more@0.99.20","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\derive_more-0.99.20\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"derive_more","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\derive_more-0.99.20\\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":["add","add_assign","as_mut","as_ref","constructor","convert_case","default","deref","deref_mut","display","error","from","from_str","index","index_mut","into","into_iterator","is_variant","iterator","mul","mul_assign","not","rustc_version","sum","try_into","unwrap"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\derive_more-4cb63adefa82a7a4.dll","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\derive_more-4cb63adefa82a7a4.dll.lib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\derive_more-4cb63adefa82a7a4.dll.exp","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\derive_more-4cb63adefa82a7a4.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#servo_arc@0.2.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\servo_arc-0.2.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"servo_arc","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\servo_arc-0.2.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libservo_arc-827702624591eccf.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libservo_arc-827702624591eccf.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unic-ucd-version@0.9.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unic-ucd-version-0.9.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unic_ucd_version","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unic-ucd-version-0.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libunic_ucd_version-fa7601f4df4a4d8c.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libunic_ucd_version-fa7601f4df4a4d8c.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#match_token@0.1.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\match_token-0.1.0\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"match_token","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\match_token-0.1.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\match_token-ec5c88a58350c01c.dll","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\match_token-ec5c88a58350c01c.dll.lib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\match_token-ec5c88a58350c01c.dll.exp","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\match_token-ec5c88a58350c01c.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\\Megghy\\.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\\Megghy\\.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libserde_derive_internals-acd5ca34909c038e.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libserde_derive_internals-acd5ca34909c038e.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cc@1.2.40","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cc-1.2.40\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cc","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cc-1.2.40\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libcc-e7ea01c4f1dabd26.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libcc-e7ea01c4f1dabd26.rmeta"],"executable":null,"fresh":true}
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#schemars@0.8.22","linked_libs":[],"linked_paths":[],"cfgs":["std_atomic64","std_atomic"],"env":[],"out_dir":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\schemars-7520300622daa7e8\\out"}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#indexmap@2.11.4","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\indexmap-2.11.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"indexmap","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\indexmap-2.11.4\\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","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libindexmap-980754adf31b6abf.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libindexmap-980754adf31b6abf.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#camino@1.2.1","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\camino-1.2.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"camino","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\camino-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":["serde1"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libcamino-f555e6136f07bcb5.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libcamino-f555e6136f07bcb5.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#same-file@1.0.6","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\same-file-1.0.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"same_file","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\same-file-1.0.6\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libsame_file-3ef1b40bc1869099.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libsame_file-3ef1b40bc1869099.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#erased-serde@0.4.8","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\erased-serde-0.4.8\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"erased_serde","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\erased-serde-0.4.8\\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":["alloc"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\liberased_serde-84c73b780672e228.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\liberased_serde-84c73b780672e228.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#regex@1.11.3","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\regex-1.11.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"regex","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\regex-1.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":["default","perf","perf-backtrack","perf-cache","perf-dfa","perf-inline","perf-literal","perf-onepass","std","unicode","unicode-age","unicode-bool","unicode-case","unicode-gencat","unicode-perl","unicode-script","unicode-segment"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libregex-867b634d58e248df.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libregex-867b634d58e248df.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#brotli-decompressor@5.0.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\brotli-decompressor-5.0.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"brotli_decompressor","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\brotli-decompressor-5.0.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":["alloc-stdlib","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libbrotli_decompressor-6d0f7c954cd94e45.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libbrotli_decompressor-6d0f7c954cd94e45.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\\Megghy\\.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\\Megghy\\.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":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libdyn_clone-2d679e0ffa7a8aee.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libdyn_clone-2d679e0ffa7a8aee.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#http@1.3.1","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\http-1.3.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"http","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\http-1.3.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":["default","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libhttp-648d9950e21b1bb7.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libhttp-648d9950e21b1bb7.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.100","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\anyhow-1.0.100\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"anyhow","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\anyhow-1.0.100\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libanyhow-91df5b969b56bcbb.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libanyhow-91df5b969b56bcbb.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\\Megghy\\.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\\Megghy\\.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libdunce-07293e6c90453183.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libdunce-07293e6c90453183.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zerofrom-derive@0.1.6","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerofrom-derive-0.1.6\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"zerofrom_derive","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerofrom-derive-0.1.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\zerofrom_derive-0fc79dbbe6025f78.dll","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\zerofrom_derive-0fc79dbbe6025f78.dll.lib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\zerofrom_derive-0fc79dbbe6025f78.dll.exp","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\zerofrom_derive-0fc79dbbe6025f78.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#yoke-derive@0.8.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\yoke-derive-0.8.0\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"yoke_derive","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\yoke-derive-0.8.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\yoke_derive-5a3430d9824ebbf3.dll","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\yoke_derive-5a3430d9824ebbf3.dll.lib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\yoke_derive-5a3430d9824ebbf3.dll.exp","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\yoke_derive-5a3430d9824ebbf3.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rand-0.8.5\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rand","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rand-0.8.5\\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":["alloc","default","getrandom","libc","rand_chacha","small_rng","std","std_rng"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\librand-e081fc7e45bf1aa6.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\librand-e081fc7e45bf1aa6.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\\Megghy\\.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\\Megghy\\.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":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","derive","serde_derive","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libserde-0e85c0cf9d3e6c00.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libserde-0e85c0cf9d3e6c00.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.17","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\thiserror-2.0.17\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"thiserror","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\thiserror-2.0.17\\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","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libthiserror-62c48fa49dad34ae.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libthiserror-62c48fa49dad34ae.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#darling_macro@0.21.3","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\darling_macro-0.21.3\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"darling_macro","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\darling_macro-0.21.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\darling_macro-6cafbd86eb8146e9.dll","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\darling_macro-6cafbd86eb8146e9.dll.lib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\darling_macro-6cafbd86eb8146e9.dll.exp","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\darling_macro-6cafbd86eb8146e9.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rand@0.7.3","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rand-0.7.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rand","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rand-0.7.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":["alloc","default","getrandom","getrandom_package","libc","rand_pcg","small_rng","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\librand-f40e9c681edbeb76.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\librand-f40e9c681edbeb76.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.4","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\parking_lot-0.12.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"parking_lot","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\parking_lot-0.12.4\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libparking_lot-d91772eaca74a0fb.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libparking_lot-d91772eaca74a0fb.rmeta"],"executable":null,"fresh":true}
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#cssparser@0.29.6","linked_libs":[],"linked_paths":[],"cfgs":["rustc_has_pr45225"],"env":[],"out_dir":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\cssparser-9dbcc694c5441f50\\out"}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\thiserror-1.0.69\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"thiserror","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\thiserror-1.0.69\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libthiserror-40fc0c3cfdabfa3a.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libthiserror-40fc0c3cfdabfa3a.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unic-ucd-ident@0.9.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unic-ucd-ident-0.9.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unic_ucd_ident","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unic-ucd-ident-0.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":["default","id","xid"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libunic_ucd_ident-97314b28b50e7b5b.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libunic_ucd_ident-97314b28b50e7b5b.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#schemars_derive@0.8.22","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\schemars_derive-0.8.22\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"schemars_derive","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\schemars_derive-0.8.22\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\schemars_derive-c3afa70046aad982.dll","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\schemars_derive-c3afa70046aad982.dll.lib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\schemars_derive-c3afa70046aad982.dll.exp","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\schemars_derive-c3afa70046aad982.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\walkdir-2.5.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"walkdir","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\walkdir-2.5.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libwalkdir-25eb1b622de8df46.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libwalkdir-25eb1b622de8df46.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde-untagged@0.1.9","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde-untagged-0.1.9\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serde_untagged","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde-untagged-0.1.9\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libserde_untagged-e2a3d858e4e16b7d.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libserde_untagged-e2a3d858e4e16b7d.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#brotli@8.0.2","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\brotli-8.0.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"brotli","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\brotli-8.0.2\\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":["alloc-stdlib","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libbrotli-0941e47bf6be8513.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libbrotli-0941e47bf6be8513.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#glob@0.3.3","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\glob-0.3.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"glob","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\glob-0.3.3\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libglob-2c72b2d35d0bc7db.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libglob-2c72b2d35d0bc7db.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\\Megghy\\.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\\Megghy\\.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","rc","serde_derive","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\serde-fd1c85fa6ed66727\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\serde-fd1c85fa6ed66727\\build_script_build.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.3","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cfg-if-1.0.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cfg_if","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cfg-if-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":[],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libcfg_if-123af2c0c40e087c.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\\Megghy\\.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\\Megghy\\.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libwindows_x86_64_msvc-3e6e4ddbeeceebc3.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#libc@0.2.176","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\libc-0.2.176\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\libc-0.2.176\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\libc-cf6353137e332216\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\libc-cf6353137e332216\\build_script_build.pdb"],"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\\Megghy\\.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\\Megghy\\.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libsmallvec-fd9fc186d6d6180f.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.15","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\itoa-1.0.15\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"itoa","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\itoa-1.0.15\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libitoa-69297a500bb545a7.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\stable_deref_trait-1.2.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"stable_deref_trait","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\stable_deref_trait-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":["alloc"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libstable_deref_trait-a5623622a362b8d6.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#vswhom-sys@0.1.3","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\vswhom-sys-0.1.3\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\vswhom-sys-0.1.3\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\vswhom-sys-d22958da3eaa9b8b\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\vswhom-sys-d22958da3eaa9b8b\\build_script_build.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-link@0.1.3","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-link-0.1.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_link","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-link-0.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libwindows_link-21d82eae9c854e31.rmeta"],"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\\Megghy\\.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\\Megghy\\.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":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["Win32","Win32_Foundation","Win32_Security","Win32_Storage","Win32_Storage_FileSystem","Win32_System","Win32_System_Diagnostics","Win32_System_Diagnostics_Debug","Win32_System_Registry","Win32_System_Time","default"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libwindows_sys-0299f600f5c9ddce.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libwindows_sys-0299f600f5c9ddce.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.6","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\memchr-2.7.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"memchr","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\memchr-2.7.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":["alloc","default","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libmemchr-f151bb751f74fac3.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustc_version@0.4.1","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rustc_version-0.4.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rustc_version","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rustc_version-0.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\librustc_version-a26125eca7570217.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\librustc_version-a26125eca7570217.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\bytes-1.10.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"bytes","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\bytes-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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libbytes-6f1a6f12e445e6cc.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\\Megghy\\.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\\Megghy\\.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libversion_check-793d72f0c6a3aed0.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libversion_check-793d72f0c6a3aed0.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#option-ext@0.2.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\option-ext-0.2.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"option_ext","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\option-ext-0.2.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\liboption_ext-b19103553caee42d.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\liboption_ext-b19103553caee42d.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-link@0.2.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-link-0.2.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_link","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-link-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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libwindows_link-ea926c0d312b59c6.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerofrom-0.1.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zerofrom","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerofrom-0.1.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":["alloc","derive"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libzerofrom-d350c9b52218d6ad.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libzerofrom-d350c9b52218d6ad.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#phf_generator@0.11.3","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf_generator-0.11.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"phf_generator","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf_generator-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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libphf_generator-26fea246e856d677.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libphf_generator-26fea246e856d677.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#darling@0.21.3","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\darling-0.21.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"darling","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\darling-0.21.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":["default","suggestions"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libdarling-5b268649a225b979.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libdarling-5b268649a225b979.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#phf_generator@0.10.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf_generator-0.10.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"phf_generator","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf_generator-0.10.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libphf_generator-2c9faf338aa8317f.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libphf_generator-2c9faf338aa8317f.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#phf_generator@0.8.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf_generator-0.8.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"phf_generator","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf_generator-0.8.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libphf_generator-0688d4a70b1617e4.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libphf_generator-0688d4a70b1617e4.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#string_cache@0.8.9","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\string_cache-0.8.9\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"string_cache","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\string_cache-0.8.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":["default","serde","serde_support"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libstring_cache-a6cc7494fcf1e596.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libstring_cache-a6cc7494fcf1e596.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#uuid@1.18.1","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\uuid-1.18.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"uuid","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\uuid-1.18.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":["default","rng","serde","std","v4"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libuuid-33a18af0ec110131.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libuuid-33a18af0ec110131.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cargo-platform@0.1.9","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cargo-platform-0.1.9\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cargo_platform","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cargo-platform-0.1.9\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libcargo_platform-d600fa9a9ce25ea4.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libcargo_platform-d600fa9a9ce25ea4.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#jsonptr@0.6.3","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\jsonptr-0.6.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"jsonptr","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\jsonptr-0.6.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":["assign","default","delete","json","resolve","serde","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libjsonptr-2203f5ad729aa52e.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libjsonptr-2203f5ad729aa52e.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#indexmap@1.9.3","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\indexmap-1.9.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"indexmap","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\indexmap-1.9.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":["serde","serde-1"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libindexmap-3bbb35e0730667c8.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libindexmap-3bbb35e0730667c8.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":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\serde-8dc202449ace2db7\\out"}
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#libc@0.2.176","linked_libs":[],"linked_paths":[],"cfgs":["freebsd12"],"env":[],"out_dir":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\libc-7de41ea9fc318b8b\\out"}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.52.6","manifest_path":"C:\\Users\\Megghy\\.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\\Megghy\\.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libwindows_targets-b5624e17f0a1ad8b.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerofrom-0.1.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zerofrom","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerofrom-0.1.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":["alloc","derive"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libzerofrom-bb4108bcd2f22cad.rmeta"],"executable":null,"fresh":true}
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#vswhom-sys@0.1.3","linked_libs":["static=vswhom","dylib=OleAut32","dylib=Ole32"],"linked_paths":["native=C:\\Program Files\\Microsoft Visual Studio\\18\\Insiders\\VC\\Tools\\MSVC\\14.50.35503\\atlmfc\\lib\\x64","native=G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\vswhom-sys-447eccf6e9e6fc4a\\out"],"cfgs":[],"env":[],"out_dir":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\vswhom-sys-447eccf6e9e6fc4a\\out"}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#winreg@0.55.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\winreg-0.55.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"winreg","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\winreg-0.55.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libwinreg-6412068ffc103318.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libwinreg-6412068ffc103318.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-result@0.3.4","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-result-0.3.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_result","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-result-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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libwindows_result-5a3169ef8407aca2.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-strings@0.4.2","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-strings-0.4.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_strings","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-strings-0.4.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":["std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libwindows_strings-12d818ac320dacd5.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#dirs-sys@0.5.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dirs-sys-0.5.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"dirs_sys","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dirs-sys-0.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libdirs_sys-8ea2d326104c59a3.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libdirs_sys-8ea2d326104c59a3.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\heck-0.5.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"heck","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\heck-0.5.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libheck-3e94552a1b91b654.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libheck-3e94552a1b91b654.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cargo_toml@0.22.3","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cargo_toml-0.22.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cargo_toml","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cargo_toml-0.22.3\\src\\cargo_toml.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libcargo_toml-2cca310e39cf6b88.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libcargo_toml-2cca310e39cf6b88.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#litemap@0.8.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\litemap-0.8.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"litemap","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\litemap-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":["alloc"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\liblitemap-99aba40979849771.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\\Megghy\\.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\\Megghy\\.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libfnv-3d8ef674e6ff6ec4.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\pin-project-lite-0.2.16\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"pin_project_lite","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\pin-project-lite-0.2.16\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libpin_project_lite-360f5ac79d6490a8.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#writeable@0.6.1","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\writeable-0.6.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"writeable","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\writeable-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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libwriteable-f3ed0b6a2407068f.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\once_cell-1.21.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"once_cell","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\once_cell-1.21.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":["alloc","default","race","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libonce_cell-02d9b1423b4c3a99.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\\Megghy\\.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\\Megghy\\.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libpercent_encoding-b916a67146370fe5.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\\Megghy\\.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\\Megghy\\.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libscopeguard-66a9ca5b98e4d6bf.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-interface@0.59.2","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-interface-0.59.2\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"windows_interface","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-interface-0.59.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\windows_interface-9baea3ebc7e7fb56.dll","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\windows_interface-9baea3ebc7e7fb56.dll.lib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\windows_interface-9baea3ebc7e7fb56.dll.exp","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\windows_interface-9baea3ebc7e7fb56.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-implement@0.60.1","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-implement-0.60.1\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"windows_implement","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-implement-0.60.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\windows_implement-f7bd6282abc9f13f.dll","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\windows_implement-f7bd6282abc9f13f.dll.lib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\windows_implement-f7bd6282abc9f13f.dll.exp","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\windows_implement-f7bd6282abc9f13f.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_normalizer_data@2.0.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_normalizer_data-2.0.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"icu_normalizer_data","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_normalizer_data-2.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":[],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libicu_normalizer_data-99b7b753be955813.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_properties_data@2.0.1","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_properties_data-2.0.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"icu_properties_data","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_properties_data-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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libicu_properties_data-9c14d4744353a58e.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#yoke@0.8.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\yoke-0.8.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"yoke","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\yoke-0.8.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":["alloc","derive","zerofrom"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libyoke-7239efcf78d9bb83.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libyoke-7239efcf78d9bb83.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#phf_macros@0.11.3","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf_macros-0.11.3\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"phf_macros","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf_macros-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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\phf_macros-ed9cbe165c69e353.dll","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\phf_macros-ed9cbe165c69e353.dll.lib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\phf_macros-ed9cbe165c69e353.dll.exp","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\phf_macros-ed9cbe165c69e353.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_with_macros@3.15.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_with_macros-3.15.0\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"serde_with_macros","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_with_macros-3.15.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\serde_with_macros-c5c86e4b338c6a5a.dll","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\serde_with_macros-c5c86e4b338c6a5a.dll.lib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\serde_with_macros-c5c86e4b338c6a5a.dll.exp","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\serde_with_macros-c5c86e4b338c6a5a.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#string_cache_codegen@0.5.4","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\string_cache_codegen-0.5.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"string_cache_codegen","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\string_cache_codegen-0.5.4\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libstring_cache_codegen-71af25fbfbb642c0.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libstring_cache_codegen-71af25fbfbb642c0.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#phf_codegen@0.11.3","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf_codegen-0.11.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"phf_codegen","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf_codegen-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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libphf_codegen-6ce6adb032d0e604.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libphf_codegen-6ce6adb032d0e604.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#phf_codegen@0.8.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf_codegen-0.8.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"phf_codegen","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf_codegen-0.8.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libphf_codegen-4a496ffbbd3c1723.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libphf_codegen-4a496ffbbd3c1723.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#phf_macros@0.10.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf_macros-0.10.0\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"phf_macros","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf_macros-0.10.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\phf_macros-cc9b9ae1db88937c.dll","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\phf_macros-cc9b9ae1db88937c.dll.lib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\phf_macros-cc9b9ae1db88937c.dll.exp","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\phf_macros-cc9b9ae1db88937c.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cfb@0.7.3","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cfb-0.7.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cfb","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cfb-0.7.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":[],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libcfb-65a1c1684a249056.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libcfb-65a1c1684a249056.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cargo_metadata@0.19.2","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cargo_metadata-0.19.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cargo_metadata","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cargo_metadata-0.19.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":["default"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libcargo_metadata-eda4338cb3e9ac2a.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libcargo_metadata-eda4338cb3e9ac2a.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#json-patch@3.0.1","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\json-patch-3.0.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"json_patch","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\json-patch-3.0.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":["default","diff"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libjson_patch-40fb8365dc9d6ce5.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libjson_patch-40fb8365dc9d6ce5.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\\Megghy\\.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\\Megghy\\.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","rc","serde_derive","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libserde-7ca0f503620a2988.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#yoke@0.8.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\yoke-0.8.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"yoke","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\yoke-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":["alloc","derive","zerofrom"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libyoke-0006d81a6b06c32e.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#libc@0.2.176","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\libc-0.2.176\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"libc","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\libc-0.2.176\\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","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\liblibc-285b155a254a25f8.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\liblibc-285b155a254a25f8.rmeta"],"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\\Megghy\\.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\\Megghy\\.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":["Wdk","Wdk_Foundation","Wdk_Storage","Wdk_Storage_FileSystem","Wdk_System","Wdk_System_IO","Win32","Win32_Foundation","Win32_Graphics","Win32_Graphics_Dwm","Win32_Graphics_Gdi","Win32_Networking","Win32_Networking_WinSock","Win32_Security","Win32_Storage","Win32_Storage_FileSystem","Win32_System","Win32_System_Console","Win32_System_IO","Win32_System_LibraryLoader","Win32_System_Pipes","Win32_System_SystemInformation","Win32_System_SystemServices","Win32_System_Threading","Win32_System_WindowsProgramming","Win32_UI","Win32_UI_Shell","Win32_UI_WindowsAndMessaging","default"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libwindows_sys-c2f1d9eb6627cf65.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#dirs@6.0.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dirs-6.0.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"dirs","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dirs-6.0.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libdirs-43cd13875e686204.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libdirs-43cd13875e686204.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.11","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\parking_lot_core-0.9.11\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"parking_lot_core","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\parking_lot_core-0.9.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libparking_lot_core-16a653d0c575f9dd.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.13","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\lock_api-0.4.13\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"lock_api","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\lock_api-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":["atomic_usize","default"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\liblock_api-e9d8b5157e526545.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-core@0.61.2","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-core-0.61.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_core","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-core-0.61.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libwindows_core-60485c54f877197d.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#http@1.3.1","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\http-1.3.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"http","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\http-1.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":["default","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libhttp-194c4970bf8d03e5.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\\Megghy\\.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\\Megghy\\.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\crc32fast-9ff166321eb566c5\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\crc32fast-9ff166321eb566c5\\build_script_build.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#value-bag@1.11.1","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\value-bag-1.11.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"value_bag","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\value-bag-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":["inline-i128"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libvalue_bag-45081b374c8047f8.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-threading@0.1.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-threading-0.1.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_threading","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-threading-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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libwindows_threading-58adba3c2aa18a3f.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tokio-macros@2.5.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tokio-macros-2.5.0\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"tokio_macros","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tokio-macros-2.5.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\tokio_macros-95326d35e44ffec4.dll","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\tokio_macros-95326d35e44ffec4.dll.lib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\tokio_macros-95326d35e44ffec4.dll.exp","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\tokio_macros-95326d35e44ffec4.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ryu@1.0.20","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ryu-1.0.20\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ryu","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ryu-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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libryu-3442447a74614b27.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\\Megghy\\.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\\Megghy\\.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libutf8_iter-67205964bf5d7618.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.145","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_json-1.0.145\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_json-1.0.145\\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","raw_value","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\serde_json-de9f635d58fd47b8\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\serde_json-de9f635d58fd47b8\\build_script_build.pdb"],"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\\Megghy\\.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\\Megghy\\.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libform_urlencoded-a71f25aa6184c2a5.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.61.1","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-sys-0.61.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_sys","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-sys-0.61.1\\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_Globalization","Win32_Storage","Win32_Storage_FileSystem","Win32_System","Win32_System_Com","Win32_System_Console","Win32_System_SystemInformation","Win32_UI","Win32_UI_Shell","default"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libwindows_sys-91ccfe56929f04e0.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#typenum@1.19.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\typenum-1.19.0\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\typenum-1.19.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":[],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\typenum-e8902fdad0e0395b\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\typenum-e8902fdad0e0395b\\build_script_build.pdb"],"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\\Megghy\\.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\\Megghy\\.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\generic-array-ee14a9da454cd5b7\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\generic-array-ee14a9da454cd5b7\\build_script_build.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.17","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\thiserror-2.0.17\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"thiserror","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\thiserror-2.0.17\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libthiserror-51e1e4a4ea433f46.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19","manifest_path":"C:\\Users\\Megghy\\.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\\Megghy\\.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","i128","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\num-traits-943ef112292d8372\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\num-traits-943ef112292d8372\\build_script_build.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zerovec@0.11.4","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerovec-0.11.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zerovec","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerovec-0.11.4\\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":["alloc","derive","yoke"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libzerovec-9f7f4c8edefc1942.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libzerovec-9f7f4c8edefc1942.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zerotrie@0.2.2","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerotrie-0.2.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zerotrie","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerotrie-0.2.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":["yoke","zerofrom"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libzerotrie-955a56f42d3413d1.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libzerotrie-955a56f42d3413d1.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#markup5ever@0.14.1","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\markup5ever-0.14.1\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\markup5ever-0.14.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\markup5ever-f231fef131ea0a75\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\markup5ever-f231fef131ea0a75\\build_script_build.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#selectors@0.24.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\selectors-0.24.0\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\selectors-0.24.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\selectors-dd2bb543f1993418\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\selectors-dd2bb543f1993418\\build_script_build.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#phf@0.11.3","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf-0.11.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"phf","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf-0.11.3\\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","macros","phf_macros","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libphf-a22c5f3e920044d3.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libphf-a22c5f3e920044d3.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#phf@0.10.1","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf-0.10.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"phf","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf-0.10.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","macros","phf_macros","proc-macro-hack","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libphf-413481e5c3a3ba01.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libphf-413481e5c3a3ba01.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#infer@0.19.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\infer-0.19.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"infer","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\infer-0.19.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":["alloc","cfb","default","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libinfer-111f6e27ef3b802c.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libinfer-111f6e27ef3b802c.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_with@3.15.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_with-3.15.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serde_with","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_with-3.15.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":["alloc","default","macros","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libserde_with-9f94324a3eb040ed.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libserde_with-9f94324a3eb040ed.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#vswhom-sys@0.1.3","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\vswhom-sys-0.1.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"vswhom_sys","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\vswhom-sys-0.1.3\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libvswhom_sys-ab37e6bedf6dbdd1.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libvswhom_sys-ab37e6bedf6dbdd1.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zerovec@0.11.4","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerovec-0.11.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zerovec","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerovec-0.11.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","derive","yoke"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libzerovec-9e42d91f7ef2ea1f.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zerotrie@0.2.2","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerotrie-0.2.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zerotrie","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerotrie-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":["yoke","zerofrom"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libzerotrie-edb6f244e9d93335.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.4","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\parking_lot-0.12.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"parking_lot","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\parking_lot-0.12.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libparking_lot-80a826b28bf27b1d.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":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\crc32fast-9bf53a3425b3c370\\out"}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#mio@1.0.4","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\mio-1.0.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"mio","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\mio-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":["net","os-ext","os-poll"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libmio-fb9d1a107bd5769c.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#socket2@0.6.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\socket2-0.6.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"socket2","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\socket2-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":["all"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libsocket2-650498e72fa20772.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#log@0.4.28","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\log-0.4.28\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"log","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\log-0.4.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":["kv","kv_unstable","std","value-bag"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\liblog-92b1f8ee9af10f01.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-future@0.2.1","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-future-0.2.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_future","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-future-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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libwindows_future-ab478455ade8e716.rmeta"],"executable":null,"fresh":true}
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.145","linked_libs":[],"linked_paths":[],"cfgs":["fast_arithmetic=\"64\""],"env":[],"out_dir":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\serde_json-681e295ee27a4666\\out"}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.4","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\bitflags-2.9.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"bitflags","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\bitflags-2.9.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":["serde"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libbitflags-7894d1c693c662c3.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-numerics@0.2.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-numerics-0.2.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_numerics","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-numerics-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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libwindows_numerics-7ddf5c34d73cf040.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-collections@0.2.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-collections-0.2.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_collections","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-collections-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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libwindows_collections-f11bf32dbb1bdac8.rmeta"],"executable":null,"fresh":true}
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#typenum@1.19.0","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\typenum-b31d1e3545a3be07\\out"}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#time-core@0.1.6","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\time-core-0.1.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"time_core","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\time-core-0.1.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtime_core-079cec9792c71345.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtime_core-079cec9792c71345.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#num-conv@0.1.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\num-conv-0.1.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"num_conv","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\num-conv-0.1.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libnum_conv-a39cafcea7da58b9.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libnum_conv-a39cafcea7da58b9.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\\Megghy\\.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\\Megghy\\.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libpowerfmt-19f2ce97eac604ff.rmeta"],"executable":null,"fresh":true}
{"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":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\generic-array-0647ba001c9165f1\\out"}
{"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":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\num-traits-bc79d4755ee4077f\\out"}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cookie@0.18.1","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cookie-0.18.1\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cookie-0.18.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":["percent-encode","percent-encoding"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\cookie-1fba0ce8aeb148b9\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\cookie-1fba0ce8aeb148b9\\build_script_build.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#num-conv@0.1.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\num-conv-0.1.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"num_conv","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\num-conv-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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libnum_conv-55ec824b6f8f9351.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#time-core@0.1.6","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\time-core-0.1.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"time_core","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\time-core-0.1.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtime_core-d253d242c97796d0.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#simd-adler32@0.3.7","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\simd-adler32-0.3.7\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"simd_adler32","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\simd-adler32-0.3.7\\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":["const-generics","default","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libsimd_adler32-fcb3398b1c79944c.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libsimd_adler32-fcb3398b1c79944c.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\\Megghy\\.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\\Megghy\\.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":["std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\crossbeam-utils-9d67a656a24e2a0a\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\crossbeam-utils-9d67a656a24e2a0a\\build_script_build.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tinystr@0.8.1","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tinystr-0.8.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tinystr","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tinystr-0.8.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":["alloc","zerovec"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtinystr-7872037a79388fa7.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtinystr-7872037a79388fa7.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#potential_utf@0.1.3","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\potential_utf-0.1.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"potential_utf","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\potential_utf-0.1.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":["zerovec"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libpotential_utf-00cbf21c11decbe6.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libpotential_utf-00cbf21c11decbe6.rmeta"],"executable":null,"fresh":true}
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#markup5ever@0.14.1","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\markup5ever-63b3df279f14a2dc\\out"}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cssparser@0.29.6","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cssparser-0.29.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cssparser","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cssparser-0.29.6\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libcssparser-4ab2db64cfc3adc8.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libcssparser-4ab2db64cfc3adc8.rmeta"],"executable":null,"fresh":true}
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#selectors@0.24.0","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\selectors-9163d5b726a82854\\out"}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#vswhom@0.1.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\vswhom-0.1.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"vswhom","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\vswhom-0.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libvswhom-8c464cc149dbf023.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libvswhom-8c464cc149dbf023.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tinystr@0.8.1","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tinystr-0.8.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tinystr","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tinystr-0.8.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":["alloc","zerovec"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtinystr-014fb2abfa211865.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#potential_utf@0.1.3","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\potential_utf-0.1.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"potential_utf","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\potential_utf-0.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":["zerovec"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libpotential_utf-b70f4001efbc6691.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tokio@1.47.1","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tokio-1.47.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tokio","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tokio-1.47.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":["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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtokio-16b1373d59b46066.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.145","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_json-1.0.145\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serde_json","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_json-1.0.145\\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","raw_value","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libserde_json-89f861f95dab1b70.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows@0.61.3","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-0.61.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-0.61.3\\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":["Data","Data_Xml","Data_Xml_Dom","Foundation","Foundation_Collections","UI","UI_Notifications","Win32","Win32_Devices","Win32_Devices_HumanInterfaceDevice","Win32_Foundation","Win32_Globalization","Win32_Graphics","Win32_Graphics_Dwm","Win32_Graphics_Gdi","Win32_System","Win32_System_Com","Win32_System_Com_StructuredStorage","Win32_System_DataExchange","Win32_System_Diagnostics","Win32_System_Diagnostics_Debug","Win32_System_LibraryLoader","Win32_System_Memory","Win32_System_Ole","Win32_System_Registry","Win32_System_SystemInformation","Win32_System_SystemServices","Win32_System_Threading","Win32_System_Variant","Win32_System_WinRT","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_Shell_Common","Win32_UI_TextServices","Win32_UI_WindowsAndMessaging","default","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libwindows-b4740a6d85b000f1.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#deranged@0.5.4","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\deranged-0.5.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"deranged","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\deranged-0.5.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","powerfmt","serde"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libderanged-67c455dfe970329e.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#typenum@1.19.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\typenum-1.19.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"typenum","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\typenum-1.19.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtypenum-5d4dbf3f57e9d232.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtypenum-5d4dbf3f57e9d232.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#time-macros@0.2.24","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\time-macros-0.2.24\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"time_macros","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\time-macros-0.2.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":["formatting","parsing","serde"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\time_macros-aa4b076d8a8be5ba.dll","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\time_macros-aa4b076d8a8be5ba.dll.lib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\time_macros-aa4b076d8a8be5ba.dll.exp","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\time_macros-aa4b076d8a8be5ba.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":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\crossbeam-utils-bda55455957331bf\\out"}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19","manifest_path":"C:\\Users\\Megghy\\.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\\Megghy\\.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","i128","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libnum_traits-950c28c397c7e1dc.rmeta"],"executable":null,"fresh":true}
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#cookie@0.18.1","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\cookie-305643bbbd37cd4b\\out"}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#dpi@0.1.2","manifest_path":"C:\\Users\\Megghy\\.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\\Megghy\\.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","serde","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libdpi-764f1c14acd94e67.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#libc@0.2.176","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\libc-0.2.176\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"libc","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\libc-0.2.176\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\liblibc-227d19e41ad474ec.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-version@0.1.6","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-version-0.1.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_version","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-version-0.1.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libwindows_version-f152d6915c57fc35.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#webview2-com-sys@0.38.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\webview2-com-sys-0.38.0\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\webview2-com-sys-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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\webview2-com-sys-dd6981a0938b0bbc\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\webview2-com-sys-dd6981a0938b0bbc\\build_script_build.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.3","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\aho-corasick-1.1.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"aho_corasick","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\aho-corasick-1.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":["perf-literal","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libaho_corasick-d6ee221f40da0501.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_msvc@0.53.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows_x86_64_msvc-0.53.0\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows_x86_64_msvc-0.53.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\windows_x86_64_msvc-e041c07ae38db2af\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\windows_x86_64_msvc-e041c07ae38db2af\\build_script_build.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#alloc-no-stdlib@2.0.4","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\alloc-no-stdlib-2.0.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"alloc_no_stdlib","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\alloc-no-stdlib-2.0.4\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\liballoc_no_stdlib-6feaa454c04c2913.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unic-char-range@0.9.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unic-char-range-0.9.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unic_char_range","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unic-char-range-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":["default"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libunic_char_range-0bb2e165d64e9a0f.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unic-common@0.9.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unic-common-0.9.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unic_common","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unic-common-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":["default"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libunic_common-efa139856e1a4f1c.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\\Megghy\\.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\\Megghy\\.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libraw_window_handle-2d2d8009375ea313.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.3","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\getrandom-0.3.3\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\getrandom-0.3.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":["std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\getrandom-3203b03998c9f0cd\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\getrandom-3203b03998c9f0cd\\build_script_build.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.6","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\regex-syntax-0.8.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"regex_syntax","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\regex-syntax-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","unicode","unicode-age","unicode-bool","unicode-case","unicode-gencat","unicode-perl","unicode-script","unicode-segment"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libregex_syntax-8dd03cddbceaf458.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\\Megghy\\.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\\Megghy\\.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":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libadler2-312cb8fa20720d2b.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libadler2-312cb8fa20720d2b.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\\Megghy\\.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\\Megghy\\.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":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libcrc32fast-2b581296c1dc1651.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libcrc32fast-2b581296c1dc1651.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#uuid@1.18.1","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\uuid-1.18.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"uuid","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\uuid-1.18.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","serde","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libuuid-2aa29678dc654dfd.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_locale_core@2.0.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_locale_core-2.0.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"icu_locale_core","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_locale_core-2.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":["zerovec"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libicu_locale_core-b601118e9145a74f.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libicu_locale_core-b601118e9145a74f.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_collections@2.0.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_collections-2.0.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"icu_collections","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_collections-2.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libicu_collections-124bdccf3ffd7e3b.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libicu_collections-124bdccf3ffd7e3b.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#markup5ever@0.14.1","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\markup5ever-0.14.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"markup5ever","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\markup5ever-0.14.1\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libmarkup5ever-5a85cb9871779e83.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libmarkup5ever-5a85cb9871779e83.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#selectors@0.24.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\selectors-0.24.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"selectors","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\selectors-0.24.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libselectors-d4685733244c2a39.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libselectors-d4685733244c2a39.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#embed-resource@3.0.6","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\embed-resource-3.0.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"embed_resource","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\embed-resource-3.0.6\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libembed_resource-88836f3cbd7099fb.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libembed_resource-88836f3cbd7099fb.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_locale_core@2.0.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_locale_core-2.0.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"icu_locale_core","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_locale_core-2.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":["zerovec"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libicu_locale_core-9fa7676a0dac434d.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_collections@2.0.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_collections-2.0.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"icu_collections","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_collections-2.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":[],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libicu_collections-9ecff62522632b55.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\\Megghy\\.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\\Megghy\\.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":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["more_lengths"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libgeneric_array-2749d0186284094c.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libgeneric_array-2749d0186284094c.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#time@0.3.44","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\time-0.3.44\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"time","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\time-0.3.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","default","formatting","local-offset","macros","parsing","serde","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtime-7f21ad58a6b96965.rmeta"],"executable":null,"fresh":true}
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#webview2-com-sys@0.38.0","linked_libs":["advapi32"],"linked_paths":["native=G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\webview2-com-sys-e02dde3ec8aee567\\out\\x64"],"cfgs":[],"env":[],"out_dir":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\webview2-com-sys-e02dde3ec8aee567\\out"}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unic-ucd-version@0.9.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unic-ucd-version-0.9.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unic_ucd_version","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unic-ucd-version-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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libunic_ucd_version-226768838e8ef369.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.53.0","linked_libs":[],"linked_paths":["native=C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows_x86_64_msvc-0.53.0\\lib"],"cfgs":[],"env":[],"out_dir":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\windows_x86_64_msvc-fd0c636576760816\\out"}
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.3","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\getrandom-6d50dd364829bdb7\\out"}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unic-char-property@0.9.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unic-char-property-0.9.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unic_char_property","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unic-char-property-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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libunic_char_property-39d6e981881274c1.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\\Megghy\\.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\\Megghy\\.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":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","simd","simd-adler32","with-alloc"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libminiz_oxide-f2282c5f74857ca7.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libminiz_oxide-f2282c5f74857ca7.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\\Megghy\\.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\\Megghy\\.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":["std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libcrossbeam_utils-2514be99d4ce1960.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#alloc-stdlib@0.2.2","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\alloc-stdlib-0.2.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"alloc_stdlib","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\alloc-stdlib-0.2.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\liballoc_stdlib-615ac07b00c67587.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.11","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\regex-automata-0.4.11\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"regex_automata","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\regex-automata-0.4.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":["alloc","dfa-onepass","hybrid","meta","nfa-backtrack","nfa-pikevm","nfa-thompson","perf-inline","perf-literal","perf-literal-multisubstring","perf-literal-substring","std","syntax","unicode","unicode-age","unicode-bool","unicode-case","unicode-gencat","unicode-perl","unicode-script","unicode-segment","unicode-word-boundary"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libregex_automata-6067f65f23afc875.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#winapi-util@0.1.11","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\winapi-util-0.1.11\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"winapi_util","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\winapi-util-0.1.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libwinapi_util-27908125ce0d1976.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\thiserror-1.0.69\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"thiserror","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\thiserror-1.0.69\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libthiserror-d50aabd32930397f.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#typeid@1.0.3","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\typeid-1.0.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"typeid","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\typeid-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":[],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtypeid-dda18b8c6591648d.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unicode-segmentation@1.12.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicode-segmentation-1.12.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unicode_segmentation","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicode-segmentation-1.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":[],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libunicode_segmentation-af0a0c06aab8aeb4.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0","manifest_path":"C:\\Users\\Megghy\\.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\\Megghy\\.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libbyteorder-9f6b13154950e555.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-core-0.3.31\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures_core","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-core-0.3.31\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libfutures_core-10b6e226dff9bf0e.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#simd-adler32@0.3.7","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\simd-adler32-0.3.7\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"simd_adler32","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\simd-adler32-0.3.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":["const-generics","default","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libsimd_adler32-3e2ed69d73ae3bcb.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\\Megghy\\.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\\Megghy\\.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":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libdunce-3cb184cb1f8c940d.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#siphasher@1.0.1","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\siphasher-1.0.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"siphasher","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\siphasher-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":["default","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libsiphasher-1fd2e03c66eb41ca.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#winnow@0.7.13","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\winnow-0.7.13\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"winnow","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\winnow-0.7.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libwinnow-32f9813e27092f85.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#jsonptr@0.6.3","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\jsonptr-0.6.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"jsonptr","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\jsonptr-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":["assign","default","delete","json","resolve","serde","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libjsonptr-6b0fb6b7665a4e86.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\\Megghy\\.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\\Megghy\\.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libcrc32fast-6b0a377f37c175fe.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\\Megghy\\.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\\Megghy\\.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":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libfdeflate-8ee816a8297eacc5.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libfdeflate-8ee816a8297eacc5.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#webview2-com-macros@0.8.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\webview2-com-macros-0.8.0\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"webview2_com_macros","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\webview2-com-macros-0.8.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\webview2_com_macros-35fde3bd0a986612.dll","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\webview2_com_macros-35fde3bd0a986612.dll.lib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\webview2_com_macros-35fde3bd0a986612.dll.exp","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\webview2_com_macros-35fde3bd0a986612.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_provider@2.0.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_provider-2.0.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"icu_provider","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_provider-2.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":["baked","zerotrie"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libicu_provider-f36f948686fb8442.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libicu_provider-f36f948686fb8442.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#html5ever@0.29.1","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\html5ever-0.29.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"html5ever","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\html5ever-0.29.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libhtml5ever-b1ed8d7004b32a04.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libhtml5ever-b1ed8d7004b32a04.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-winres@0.3.3","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-winres-0.3.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tauri_winres","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-winres-0.3.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtauri_winres-4cea4e113b87e3fd.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtauri_winres-4cea4e113b87e3fd.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_provider@2.0.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_provider-2.0.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"icu_provider","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_provider-2.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":["baked","zerotrie"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libicu_provider-8f3c8b24fe18108c.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cookie@0.18.1","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cookie-0.18.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cookie","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cookie-0.18.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":["percent-encode","percent-encoding"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libcookie-32225ac597f5d5b0.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#webview2-com-sys@0.38.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\webview2-com-sys-0.38.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"webview2_com_sys","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\webview2-com-sys-0.38.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libwebview2_com_sys-0662da0a1a753037.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#same-file@1.0.6","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\same-file-1.0.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"same_file","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\same-file-1.0.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libsame_file-6125fe8d47989ac5.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.3","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\getrandom-0.3.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"getrandom","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\getrandom-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":["std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libgetrandom-cf5e62c0111373d4.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#regex@1.11.3","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\regex-1.11.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"regex","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\regex-1.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":["default","perf","perf-backtrack","perf-cache","perf-dfa","perf-inline","perf-literal","perf-onepass","std","unicode","unicode-age","unicode-bool","unicode-case","unicode-gencat","unicode-perl","unicode-script","unicode-segment"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libregex-b5088b55586aa44f.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#phf_shared@0.11.3","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf_shared-0.11.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"phf_shared","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf_shared-0.11.3\\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":["std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libphf_shared-c3a4d1559821414c.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#toml_parser@1.0.3","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\toml_parser-1.0.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"toml_parser","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\toml_parser-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":["alloc","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtoml_parser-11e7159509329569.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_msvc@0.53.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows_x86_64_msvc-0.53.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_x86_64_msvc","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows_x86_64_msvc-0.53.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libwindows_x86_64_msvc-180a61796db9b5a0.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#crossbeam-channel@0.5.15","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crossbeam-channel-0.5.15\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"crossbeam_channel","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crossbeam-channel-0.5.15\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libcrossbeam_channel-f860e96b0cdac80c.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cfb@0.7.3","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cfb-0.7.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cfb","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cfb-0.7.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libcfb-2ee439f6f7584c64.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#brotli-decompressor@5.0.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\brotli-decompressor-5.0.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"brotli_decompressor","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\brotli-decompressor-5.0.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":["alloc-stdlib","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libbrotli_decompressor-281ffdcafdbed4c6.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#flate2@1.1.2","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\flate2-1.1.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"flate2","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\flate2-1.1.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":["any_impl","default","miniz_oxide","rust_backend"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libflate2-369058111ed0f928.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libflate2-369058111ed0f928.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#erased-serde@0.4.8","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\erased-serde-0.4.8\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"erased_serde","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\erased-serde-0.4.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":["alloc"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\liberased_serde-924310574b1cfb5b.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#crypto-common@0.1.6","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crypto-common-0.1.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"crypto_common","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crypto-common-0.1.6\\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":["std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libcrypto_common-8e11677143236d9e.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libcrypto_common-8e11677143236d9e.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unic-ucd-ident@0.9.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unic-ucd-ident-0.9.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unic_ucd_ident","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unic-ucd-ident-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":["default","id","xid"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libunic_ucd_ident-41253043a3260470.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\\Megghy\\.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\\Megghy\\.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":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libblock_buffer-67c41a3689cd54c7.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libblock_buffer-67c41a3689cd54c7.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_spanned@1.0.2","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_spanned-1.0.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serde_spanned","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_spanned-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":["alloc","serde","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libserde_spanned-d6612f2a07e4b470.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#toml_datetime@0.7.2","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\toml_datetime-0.7.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"toml_datetime","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\toml_datetime-0.7.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","serde","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtoml_datetime-3d38d37ba8f9fd23.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\\Megghy\\.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\\Megghy\\.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libadler2-7e7adc8515193442.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\\Megghy\\.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\\Megghy\\.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libcfg_aliases-ccdbbfbb0e09fd96.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libcfg_aliases-ccdbbfbb0e09fd96.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#toml_writer@1.0.3","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\toml_writer-1.0.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"toml_writer","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\toml_writer-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":["alloc","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtoml_writer-4f6e60d1c9de63d0.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#json-patch@3.0.1","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\json-patch-3.0.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"json_patch","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\json-patch-3.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":["default","diff"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libjson_patch-238da4bb117361f2.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_with@3.15.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_with-3.15.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serde_with","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_with-3.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":["alloc","default","macros","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libserde_with-d290b7d08ca07ce5.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#semver@1.0.27","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\semver-1.0.27\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"semver","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\semver-1.0.27\\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","serde","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libsemver-16797bf4eb9eb7af.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.100","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\anyhow-1.0.100\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"anyhow","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\anyhow-1.0.100\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libanyhow-912df0651c32d459.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-runtime@2.8.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-runtime-2.8.0\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-runtime-2.8.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":["devtools"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\tauri-runtime-6a387014419af022\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\tauri-runtime-6a387014419af022\\build_script_build.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#glob@0.3.3","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\glob-0.3.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"glob","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\glob-0.3.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libglob-ed91fd87960778f0.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#wry@0.53.3","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\wry-0.53.3\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\wry-0.53.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":["devtools","drag-drop","gdkx11","javascriptcore-rs","linux-body","os-webview","protocol","soup3","webkit2gtk","webkit2gtk-sys","x11","x11-dl"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\wry-9f76ab604b4e8688\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\wry-9f76ab604b4e8688\\build_script_build.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_normalizer@2.0.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_normalizer-2.0.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"icu_normalizer","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_normalizer-2.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":["compiled_data"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libicu_normalizer-4541c32c92bfc636.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libicu_normalizer-4541c32c92bfc636.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_properties@2.0.1","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_properties-2.0.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"icu_properties","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_properties-2.0.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":["compiled_data"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libicu_properties-e5eeeffbab5440aa.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libicu_properties-e5eeeffbab5440aa.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#kuchikiki@0.8.8-speedreader","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\kuchikiki-0.8.8-speedreader\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"kuchikiki","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\kuchikiki-0.8.8-speedreader\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libkuchikiki-2a762a85280122bf.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libkuchikiki-2a762a85280122bf.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_normalizer@2.0.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_normalizer-2.0.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"icu_normalizer","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_normalizer-2.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":["compiled_data"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libicu_normalizer-d2efef9da2b4a193.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_properties@2.0.1","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_properties-2.0.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"icu_properties","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_properties-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":["compiled_data"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libicu_properties-d9ae09c945cd311f.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#toml@0.9.7","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\toml-0.9.7\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"toml","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\toml-0.9.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":["default","display","parse","serde","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtoml-3dce7984ab6b7a02.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde-untagged@0.1.9","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde-untagged-0.1.9\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serde_untagged","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde-untagged-0.1.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":[],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libserde_untagged-633ec6dd4501710d.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\\Megghy\\.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\\Megghy\\.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libminiz_oxide-d9dd56883402a9e2.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#infer@0.19.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\infer-0.19.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"infer","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\infer-0.19.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","cfb","default","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libinfer-ec5cc9cfe6ce6275.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#png@0.17.16","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\png-0.17.16\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"png","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\png-0.17.16\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libpng-5dd0101ce48b81c7.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libpng-5dd0101ce48b81c7.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.53.4","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-targets-0.53.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_targets","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-targets-0.53.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libwindows_targets-dfd85243030f931b.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7","manifest_path":"C:\\Users\\Megghy\\.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\\Megghy\\.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":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","block-buffer","core-api","default","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libdigest-44e33b74629c13c2.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libdigest-44e33b74629c13c2.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\walkdir-2.5.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"walkdir","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\walkdir-2.5.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libwalkdir-34d76c57a036519c.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#webview2-com@0.38.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\webview2-com-0.38.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"webview2_com","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\webview2-com-0.38.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libwebview2_com-ac4d66d643b89e79.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#softbuffer@0.4.6","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\softbuffer-0.4.6\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\softbuffer-0.4.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\softbuffer-100bd5095f0fb898\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\softbuffer-100bd5095f0fb898\\build_script_build.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#phf@0.11.3","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf-0.11.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"phf","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf-0.11.3\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libphf-83e60cb239da3a1c.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#brotli@8.0.2","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\brotli-8.0.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"brotli","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\brotli-8.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":["alloc-stdlib","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libbrotli-8b9e0fd3418d6955.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\\Megghy\\.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\\Megghy\\.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":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libcpufeatures-631c3c6a6f450439.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libcpufeatures-631c3c6a6f450439.rmeta"],"executable":null,"fresh":true}
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#wry@0.53.3","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\wry-83b43f31019a4049\\out"}
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-runtime@2.8.0","linked_libs":[],"linked_paths":[],"cfgs":["desktop"],"env":[],"out_dir":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\tauri-runtime-59e322290ffcfc36\\out"}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#keyboard-types@0.7.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\keyboard-types-0.7.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"keyboard_types","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\keyboard-types-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":["default","serde","unicode-segmentation","webdriver"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libkeyboard_types-ce88f6951f25c276.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\\Megghy\\.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\\Megghy\\.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libfdeflate-9895f6092d916feb.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#pxfm@0.1.24","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\pxfm-0.1.24\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"pxfm","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\pxfm-0.1.24\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libpxfm-64b4a8a530229173.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\\Megghy\\.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\\Megghy\\.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":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libbase64-9bb2c0750d251d26.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libbase64-9bb2c0750d251d26.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0","manifest_path":"C:\\Users\\Megghy\\.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\\Megghy\\.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\liblazy_static-a00a19492b117dcc.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-runtime-wry@2.8.1","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-runtime-wry-2.8.1\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-runtime-wry-2.8.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":["common-controls-v6","devtools","x11"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\tauri-runtime-wry-328e17ea1b87a4c1\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\tauri-runtime-wry-328e17ea1b87a4c1\\build_script_build.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#option-ext@0.2.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\option-ext-0.2.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"option_ext","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\option-ext-0.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\liboption_ext-2815b038d8001a63.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serialize-to-javascript-impl@0.1.2","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serialize-to-javascript-impl-0.1.2\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"serialize_to_javascript_impl","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serialize-to-javascript-impl-0.1.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\serialize_to_javascript_impl-ad824557feb473da.dll","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\serialize_to_javascript_impl-ad824557feb473da.dll.lib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\serialize_to_javascript_impl-ad824557feb473da.dll.exp","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\serialize_to_javascript_impl-ad824557feb473da.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#bytemuck@1.23.2","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\bytemuck-1.23.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"bytemuck","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\bytemuck-1.23.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":["extern_crate_alloc"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libbytemuck-5d41b1247977bbab.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\\Megghy\\.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\\Megghy\\.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libmime-f51d29a9076e2fef.rmeta"],"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\\Megghy\\.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\\Megghy\\.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libbyteorder_lite-8ea248ba3e75cd6b.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#window-vibrancy@0.6.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\window-vibrancy-0.6.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"window_vibrancy","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\window-vibrancy-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":[],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libwindow_vibrancy-847b5be2eacdf1b9.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\\Megghy\\.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\\Megghy\\.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":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["compiled_data"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libidna_adapter-546fa97d774b98b6.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libidna_adapter-546fa97d774b98b6.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\\Megghy\\.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\\Megghy\\.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libidna_adapter-7344149210f2878c.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.60.2","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-sys-0.60.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_sys","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-sys-0.60.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":["Win32","Win32_Foundation","Win32_Globalization","Win32_Graphics","Win32_Graphics_Gdi","Win32_Security","Win32_System","Win32_System_DataExchange","Win32_System_LibraryLoader","Win32_System_SystemServices","Win32_System_Threading","Win32_UI","Win32_UI_Accessibility","Win32_UI_Controls","Win32_UI_HiDpi","Win32_UI_Input","Win32_UI_Input_KeyboardAndMouse","Win32_UI_Shell","Win32_UI_WindowsAndMessaging","default"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libwindows_sys-063c1d939630f373.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#flate2@1.1.2","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\flate2-1.1.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"flate2","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\flate2-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":["any_impl","default","miniz_oxide","rust_backend"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libflate2-2b462ee7c1171c9b.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\\Megghy\\.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\\Megghy\\.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":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libsha2-a1afb6c6a32416a6.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libsha2-a1afb6c6a32416a6.rmeta"],"executable":null,"fresh":true}
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#softbuffer@0.4.6","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\softbuffer-4ed9e9f55e67baa8\\out"}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ico@0.4.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ico-0.4.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ico","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ico-0.4.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libico-c286f1dedf11d57f.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libico-c286f1dedf11d57f.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#wry@0.53.3","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\wry-0.53.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"wry","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\wry-0.53.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":["devtools","drag-drop","gdkx11","javascriptcore-rs","linux-body","os-webview","protocol","soup3","webkit2gtk","webkit2gtk-sys","x11","x11-dl"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libwry-2c751e760b5239e1.rmeta"],"executable":null,"fresh":true}
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-runtime-wry@2.8.1","linked_libs":[],"linked_paths":[],"cfgs":["desktop"],"env":[],"out_dir":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\tauri-runtime-wry-e55a9eac1962b2e8\\out"}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#moxcms@0.7.5","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\moxcms-0.7.5\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"moxcms","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\moxcms-0.7.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":["avx","default","neon","sse"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libmoxcms-64f163d2906ba85f.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#dirs-sys@0.5.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dirs-sys-0.5.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"dirs_sys","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dirs-sys-0.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libdirs_sys-2f0ea700b5d0047a.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serialize-to-javascript@0.1.2","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serialize-to-javascript-0.1.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serialize_to_javascript","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serialize-to-javascript-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":[],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libserialize_to_javascript-b6a34b6c6cffc427.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_repr@0.1.20","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_repr-0.1.20\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"serde_repr","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_repr-0.1.20\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\serde_repr-23f2384b3dc72f68.dll","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\serde_repr-23f2384b3dc72f68.dll.lib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\serde_repr-23f2384b3dc72f68.dll.exp","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\serde_repr-23f2384b3dc72f68.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\heck-0.5.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"heck","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\heck-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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libheck-c8d955cc45562223.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.34","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tracing-core-0.1.34\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tracing_core","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tracing-core-0.1.34\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtracing_core-b025941090c16149.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\\Megghy\\.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\\Megghy\\.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\ring-42abb60191c04bbc\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\ring-42abb60191c04bbc\\build_script_build.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tracing-attributes@0.1.30","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tracing-attributes-0.1.30\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"tracing_attributes","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tracing-attributes-0.1.30\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\tracing_attributes-3512242985a16f32.dll","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\tracing_attributes-3512242985a16f32.dll.lib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\tracing_attributes-3512242985a16f32.dll.exp","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\tracing_attributes-3512242985a16f32.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#slab@0.4.11","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\slab-0.4.11\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"slab","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\slab-0.4.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":["default","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libslab-f4dea514c23500b0.rmeta"],"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\\Megghy\\.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\\Megghy\\.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libzeroize-8543014759310308.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\\Megghy\\.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\\Megghy\\.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libequivalent-ba0c225f2f332fde.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.16.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hashbrown-0.16.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hashbrown","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hashbrown-0.16.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libhashbrown-25b4f59b012cbd65.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#pin-utils@0.1.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\pin-utils-0.1.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"pin_utils","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\pin-utils-0.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":[],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libpin_utils-6131d7e882b3d82e.rmeta"],"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\\Megghy\\.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\\Megghy\\.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libhttp_body-a699eb9b3b1d78fc.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.16","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\getrandom-0.2.16\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"getrandom","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\getrandom-0.2.16\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libgetrandom-79ba77fcecbab6e6.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures-macro@0.3.31","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-macro-0.3.31\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"futures_macro","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-macro-0.3.31\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\futures_macro-fb0456772384f340.dll","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\futures_macro-fb0456772384f340.dll.lib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\futures_macro-fb0456772384f340.dll.exp","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\futures_macro-fb0456772384f340.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-sink-0.3.31\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures_sink","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-sink-0.3.31\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libfutures_sink-d328231113ed7cc6.rmeta"],"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\\Megghy\\.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\\Megghy\\.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\httparse-b37724c101282493\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\httparse-b37724c101282493\\build_script_build.pdb"],"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\\Megghy\\.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\\Megghy\\.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libuntrusted-6a5b017f07254bae.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures-task@0.3.31","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-task-0.3.31\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures_task","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-task-0.3.31\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libfutures_task-e9ec59bd49a29dbb.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\\Megghy\\.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\\Megghy\\.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libatomic_waker-01c8d4dd37710705.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\\Megghy\\.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\\Megghy\\.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtry_lock-2bee410b7992e624.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#winapi@0.3.9","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\winapi-0.3.9\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\winapi-0.3.9\\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":["cfg","evntrace","handleapi","impl-debug","impl-default","in6addr","inaddr","minwinbase","minwindef","ntsecapi","timezoneapi","windef","winerror","winioctl","winnt","winreg"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\winapi-c9744137a19175d0\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\winapi-c9744137a19175d0\\build_script_build.pdb"],"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\\Megghy\\.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\\Megghy\\.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":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","compiled_data","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libidna-ae13b47cb2e53744.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libidna-ae13b47cb2e53744.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\\Megghy\\.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\\Megghy\\.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","default","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libidna-de28ba345bfa8252.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#muda@0.17.1","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\muda-0.17.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"muda","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\muda-0.17.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":["common-controls-v6","gtk","serde"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libmuda-e73e5d878d3f97f0.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#png@0.18.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\png-0.18.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"png","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\png-0.18.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libpng-4821926115e5d9ee.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#softbuffer@0.4.6","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\softbuffer-0.4.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"softbuffer","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\softbuffer-0.4.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libsoftbuffer-d34f1e5f37ea23bf.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#dirs@6.0.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dirs-6.0.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"dirs","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dirs-6.0.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libdirs-862995a5f8212757.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tracing-0.1.41\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tracing","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tracing-0.1.41\\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":["attributes","default","std","tracing-attributes"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtracing-9bcd838618fbd48a.rmeta"],"executable":null,"fresh":true}
{"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=G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\ring-1681e65a5d0dc1d0\\out"],"cfgs":[],"env":[],"out_dir":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\ring-1681e65a5d0dc1d0\\out"}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#indexmap@2.11.4","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\indexmap-2.11.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"indexmap","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\indexmap-2.11.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","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libindexmap-6332ca8b15038f57.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.12.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rustls-pki-types-1.12.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rustls_pki_types","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rustls-pki-types-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":["alloc","default","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\librustls_pki_types-c09ebfd5e37ea170.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-util-0.3.31\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures_util","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-util-0.3.31\\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","default","futures-macro","slab","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libfutures_util-bf058f5068e3fae6.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tokio-util@0.7.16","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tokio-util-0.7.16\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tokio_util","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tokio-util-0.7.16\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtokio_util-0e850330eed0155d.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":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\httparse-40a10619fa24a598\\out"}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.32","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rustls-0.23.32\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rustls-0.23.32\\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":["ring","std","tls12"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\rustls-b7b08ef7a3fdf43d\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\rustls-b7b08ef7a3fdf43d\\build_script_build.pdb"],"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\\Megghy\\.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\\Megghy\\.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtower_service-2927cc59f3517aa6.rmeta"],"executable":null,"fresh":true}
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#winapi@0.3.9","linked_libs":["dylib=advapi32","dylib=credui","dylib=kernel32","dylib=secur32"],"linked_paths":[],"cfgs":["feature=\"lsalookup\"","feature=\"vcruntime\"","feature=\"basetsd\"","feature=\"ktmtypes\"","feature=\"excpt\"","feature=\"ntdef\"","feature=\"wmistr\"","feature=\"vadefs\"","feature=\"rpcndr\"","feature=\"ntstatus\"","feature=\"devpropdef\"","feature=\"evntcons\"","feature=\"wincred\"","feature=\"reason\"","feature=\"wtypesbase\"","feature=\"guiddef\"","feature=\"sspi\"","feature=\"subauth\"","feature=\"evntprov\""],"env":[],"out_dir":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\winapi-868c309613505ee1\\out"}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#want@0.3.1","manifest_path":"C:\\Users\\Megghy\\.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\\Megghy\\.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libwant-c4492102deb9fa34.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-channel-0.3.31\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures_channel","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-channel-0.3.31\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libfutures_channel-833c442ba45ea2c0.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\\Megghy\\.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\\Megghy\\.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libsubtle-1992ccc93cfc1ba5.rmeta"],"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\\Megghy\\.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\\Megghy\\.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libsync_wrapper-b8ddcd24d18460c7.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-registry@0.5.3","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-registry-0.5.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_registry","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-registry-0.5.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","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libwindows_registry-4b31cb2b5b1339b1.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#fastrand@2.3.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\fastrand-2.3.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"fastrand","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\fastrand-2.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":["alloc","default","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libfastrand-0242012a3cc1e8c6.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#psl-types@2.0.11","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\psl-types-2.0.11\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"psl_types","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\psl-types-2.0.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":[],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libpsl_types-a6f67087b292fb17.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#litrs@0.4.2","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\litrs-0.4.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"litrs","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\litrs-0.4.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\liblitrs-e0678a80cef19e07.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\liblitrs-e0678a80cef19e07.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ipnet@2.11.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ipnet-2.11.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ipnet","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ipnet-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":["default","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libipnet-b7f33d3ead5d12fb.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\\Megghy\\.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\\Megghy\\.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libbase64-60dbf2162231c154.rmeta"],"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\\Megghy\\.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\\Megghy\\.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtower_layer-7e185b956ba54a13.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.8.27","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerocopy-0.8.27\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zerocopy","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerocopy-0.8.27\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libzerocopy-cb3d43eb6111d270.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#iri-string@0.7.8","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\iri-string-0.7.8\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"iri_string","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\iri-string-0.7.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":["alloc","default","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libiri_string-72b78bf5585c7f08.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rust_decimal@1.38.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rust_decimal-1.38.0\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rust_decimal-1.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":["std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\rust_decimal-fef8bc57aa5f5810\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\rust_decimal-fef8bc57aa5f5810\\build_script_build.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#winreg@0.10.1","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\winreg-0.10.1\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\winreg-0.10.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":[],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\winreg-15c473eae2e43ba2\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\winreg-15c473eae2e43ba2\\build_script_build.pdb"],"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\\Megghy\\.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\\Megghy\\.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libhttp_body_util-36f2f55f01df4d52.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#url@2.5.7","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\url-2.5.7\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"url","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\url-2.5.7\\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","serde","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\liburl-310b23f38c118851.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\liburl-310b23f38c118851.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#url@2.5.7","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\url-2.5.7\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"url","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\url-2.5.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":["default","serde","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\liburl-b49a3a6c241fae1d.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#image@0.25.8","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\image-0.25.8\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"image","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\image-0.25.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":["bmp","ico","png"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libimage-b884d88071b44c88.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tray-icon@0.21.1","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tray-icon-0.21.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tray_icon","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tray-icon-0.21.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":["common-controls-v6","serde"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtray_icon-7593529e26d7d4dd.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\\Megghy\\.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\\Megghy\\.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libring-72ef23bc2374ca2f.rmeta"],"executable":null,"fresh":true}
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.32","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\rustls-17f62b18f578e08d\\out"}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#h2@0.4.12","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\h2-0.4.12\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"h2","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\h2-0.4.12\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libh2-f6b5918b50238239.rmeta"],"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\\Megghy\\.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\\Megghy\\.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libhttparse-b4fb1babb990ded4.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#winapi@0.3.9","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\winapi-0.3.9\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"winapi","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\winapi-0.3.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":["cfg","evntrace","handleapi","impl-debug","impl-default","in6addr","inaddr","minwinbase","minwindef","ntsecapi","timezoneapi","windef","winerror","winioctl","winnt","winreg"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libwinapi-b190901b5d1d360b.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#publicsuffix@2.3.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\publicsuffix-2.3.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"publicsuffix","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\publicsuffix-2.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":["default","idna","punycode"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libpublicsuffix-ad98b86d590367d2.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tower@0.5.2","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tower-0.5.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tower","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tower-0.5.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":["__common","futures-core","futures-util","pin-project-lite","retry","sync_wrapper","timeout","tokio","util"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtower-b62adb59ef3e7e4b.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#document-features@0.2.11","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\document-features-0.2.11\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"document_features","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\document-features-0.2.11\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\document_features-18612bbb101c2abe.dll","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\document_features-18612bbb101c2abe.dll.lib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\document_features-18612bbb101c2abe.dll.exp","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\document_features-18612bbb101c2abe.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#webpki-roots@1.0.2","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\webpki-roots-1.0.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"webpki_roots","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\webpki-roots-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":[],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libwebpki_roots-27f0fb95adfb6325.rmeta"],"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\\Megghy\\.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\\Megghy\\.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libppv_lite86-f162c25a5ef7aa75.rmeta"],"executable":null,"fresh":true}
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#winreg@0.10.1","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\winreg-266835a145843541\\out"}
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#rust_decimal@1.38.0","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\rust_decimal-e37383af188c7658\\out"}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rand_core@0.9.3","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rand_core-0.9.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rand_core","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rand_core-0.9.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":["os_rng","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\librand_core-f5e96aeef51849f0.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_urlencoded@0.7.1","manifest_path":"C:\\Users\\Megghy\\.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\\Megghy\\.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libserde_urlencoded-54a860ef7b5e1283.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-result@0.1.2","manifest_path":"C:\\Users\\Megghy\\.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\\Megghy\\.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libwindows_result-cc034cfb31cbb9cd.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#quick-xml@0.37.5","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\quick-xml-0.37.5\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"quick_xml","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\quick-xml-0.37.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libquick_xml-8acbb7030a662eaf.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\\Megghy\\.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\\Megghy\\.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libencoding_rs-d90dfeb215279ae3.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-implement@0.57.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-implement-0.57.0\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"windows_implement","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-implement-0.57.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\windows_implement-776f557238497646.dll","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\windows_implement-776f557238497646.dll.lib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\windows_implement-776f557238497646.dll.exp","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\windows_implement-776f557238497646.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-interface@0.57.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-interface-0.57.0\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"windows_interface","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-interface-0.57.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\windows_interface-88edd010a92c1779.dll","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\windows_interface-88edd010a92c1779.dll.lib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\windows_interface-88edd010a92c1779.dll.exp","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\windows_interface-88edd010a92c1779.pdb"],"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\\Megghy\\.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\\Megghy\\.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":["std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libarrayvec-e858fb229b2a315d.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#parking@2.2.1","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\parking-2.2.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"parking","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\parking-2.2.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libparking-0bc587fe6a217123.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ntapi@0.4.1","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ntapi-0.4.1\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ntapi-0.4.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","user"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\ntapi-b645f16ed88bdda8\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\ntapi-b645f16ed88bdda8\\build_script_build.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures-io@0.3.31","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-io-0.3.31\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures_io","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-io-0.3.31\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libfutures_io-2e04820c9f6933ea.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\\Megghy\\.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\\Megghy\\.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_Foundation","Win32_System","Win32_System_LibraryLoader","Win32_System_Registry","Win32_System_SystemInformation","Win32_System_SystemServices","Win32_System_Threading","Win32_UI","Win32_UI_WindowsAndMessaging","default"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libwindows_sys-b39351eaa42b110f.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#utf8-width@0.1.7","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\utf8-width-0.1.7\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"utf8_width","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\utf8-width-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":[],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libutf8_width-ffc9c826aa641390.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zip@4.6.1","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zip-4.6.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zip","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zip-4.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libzip-5bbeba1e597015fa.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tempfile@3.23.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tempfile-3.23.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tempfile","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tempfile-3.23.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","getrandom"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtempfile-4af332e70f7601fd.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#open@5.3.2","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\open-5.3.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"open","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\open-5.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":["shellexecute-on-windows"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libopen-9ce66fa070bbf726.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#schemars@0.8.22","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\schemars-0.8.22\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"schemars","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\schemars-0.8.22\\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","derive","indexmap","preserve_order","schemars_derive","url","uuid1"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libschemars-6ff3bc98c938ac0d.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libschemars-6ff3bc98c938ac0d.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#urlpattern@0.3.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\urlpattern-0.3.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"urlpattern","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\urlpattern-0.3.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\liburlpattern-8989c963bdbe65e1.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\liburlpattern-8989c963bdbe65e1.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#urlpattern@0.3.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\urlpattern-0.3.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"urlpattern","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\urlpattern-0.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\liburlpattern-c8bc4353f7b4dda1.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tao@0.34.3","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tao-0.34.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tao","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tao-0.34.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":["rwh_06","x11"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtao-2285668237991c57.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustls-webpki@0.103.7","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rustls-webpki-0.103.7\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"webpki","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rustls-webpki-0.103.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":["alloc","ring","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libwebpki-a41d57cc83263170.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#hyper@1.7.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hyper-1.7.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hyper","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hyper-1.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":["client","default","http1","http2"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libhyper-997e311da2442fb0.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cookie_store@0.21.1","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cookie_store-0.21.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cookie_store","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cookie_store-0.21.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","public_suffix","serde","serde_json"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libcookie_store-cd0ebd6b053adcf4.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tower-http@0.6.6","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tower-http-0.6.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tower_http","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tower-http-0.6.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":["follow-redirect","futures-util","iri-string","tower"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtower_http-9bb287964389a17d.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#winreg@0.10.1","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\winreg-0.10.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"winreg","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\winreg-0.10.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libwinreg-f0315911b0ab4d41.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures-lite@2.6.1","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-lite-2.6.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures_lite","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-lite-2.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":["alloc","default","fastrand","futures-io","parking","race","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libfutures_lite-f595c7477dea4834.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\\Megghy\\.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\\Megghy\\.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\librand_chacha-e8490ec2b0a9fc28.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-winrt-notification@0.7.2","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-winrt-notification-0.7.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tauri_winrt_notification","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-winrt-notification-0.7.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtauri_winrt_notification-cf048b6a739457b5.rmeta"],"executable":null,"fresh":true}
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#ntapi@0.4.1","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\ntapi-bbe98bf4a871a550\\out"}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rust_decimal@1.38.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rust_decimal-1.38.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rust_decimal","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rust_decimal-1.38.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\librust_decimal-239b8c7d3a3044d1.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-core@0.57.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-core-0.57.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_core","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-core-0.57.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libwindows_core-b48d7c045f7f8029.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#os_info@3.12.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\os_info-3.12.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"os_info","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\os_info-3.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","serde"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libos_info-7497dc7134fc5bf9.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#fern@0.7.1","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\fern-0.7.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"fern","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\fern-0.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libfern-bc0d03a5587e8c76.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#gethostname@1.0.2","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\gethostname-1.0.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"gethostname","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\gethostname-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":[],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libgethostname-d751e4cd0b4cda09.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#minisign-verify@0.2.4","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\minisign-verify-0.2.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"minisign_verify","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\minisign-verify-0.2.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libminisign_verify-c969e5393bc29929.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#sys-locale@0.3.2","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\sys-locale-0.3.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"sys_locale","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\sys-locale-0.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":[],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libsys_locale-db253fecdb8c6ac0.rmeta"],"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\\Megghy\\.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\\Megghy\\.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libhttpdate-3aca05d1c52163aa.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#data-url@0.3.2","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\data-url-0.3.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"data_url","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\data-url-0.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libdata_url-da5ef4a7d3add113.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#chunked_transfer@1.5.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\chunked_transfer-1.5.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"chunked_transfer","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\chunked_transfer-1.5.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libchunked_transfer-39bc4a478f686d62.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ascii@1.1.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ascii-1.1.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ascii","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ascii-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":["alloc","default","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libascii-df7ebab828695c86.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#chrono@0.4.42","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\chrono-0.4.42\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"chrono","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\chrono-0.4.42\\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","default","iana-time-zone","js-sys","now","oldtime","std","wasm-bindgen","wasmbind","winapi","windows-link"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libchrono-9a91fd33caad4fa4.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-utils@2.7.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-utils-2.7.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tauri_utils","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-utils-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":["brotli","build","cargo_metadata","compression","html-manipulation","proc-macro2","quote","resources","schema","schemars","swift-rs","walkdir"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtauri_utils-0ce8cde2de964751.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtauri_utils-0ce8cde2de964751.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-utils@2.7.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-utils-2.7.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tauri_utils","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-utils-2.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":["brotli","compression","resources","walkdir"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtauri_utils-61a655f707358ffb.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.32","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rustls-0.23.32\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rustls","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rustls-0.23.32\\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":["ring","std","tls12"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\librustls-cc0dec327a37f540.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.17","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hyper-util-0.1.17\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hyper_util","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hyper-util-0.1.17\\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","tokio"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libhyper_util-d5a1b571d6af85b2.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows@0.57.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-0.57.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-0.57.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":["Wdk","Wdk_System","Wdk_System_SystemInformation","Wdk_System_SystemServices","Wdk_System_Threading","Win32","Win32_Foundation","Win32_NetworkManagement","Win32_NetworkManagement_IpHelper","Win32_NetworkManagement_Ndis","Win32_NetworkManagement_NetManagement","Win32_Networking","Win32_Networking_WinSock","Win32_Security","Win32_Security_Authentication","Win32_Security_Authentication_Identity","Win32_Security_Authorization","Win32_Storage","Win32_Storage_FileSystem","Win32_System","Win32_System_Com","Win32_System_Diagnostics","Win32_System_Diagnostics_Debug","Win32_System_Diagnostics_ToolHelp","Win32_System_IO","Win32_System_Ioctl","Win32_System_Kernel","Win32_System_Memory","Win32_System_Performance","Win32_System_Power","Win32_System_ProcessStatus","Win32_System_Registry","Win32_System_RemoteDesktop","Win32_System_Rpc","Win32_System_SystemInformation","Win32_System_SystemServices","Win32_System_Threading","Win32_System_Variant","Win32_System_WindowsProgramming","Win32_System_Wmi","Win32_UI","Win32_UI_Shell","default","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libwindows-738709c3d84f1efe.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#byte-unit@5.1.6","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\byte-unit-5.1.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"byte_unit","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\byte-unit-5.1.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":["byte","default","rust_decimal","std"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libbyte_unit-b252e197d3bb675b.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\\Megghy\\.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\\Megghy\\.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\librand-c2d084225f5165f0.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ntapi@0.4.1","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ntapi-0.4.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ntapi","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ntapi-0.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":["default","user"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libntapi-38328a87c79b06bd.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#notify-rust@4.11.7","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\notify-rust-4.11.7\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"notify_rust","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\notify-rust-4.11.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":["async","default","serde","z","zbus"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libnotify_rust-6ed7d96f0c41a390.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#auto-launch@0.5.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\auto-launch-0.5.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"auto_launch","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\auto-launch-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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libauto_launch-8f46c17c6c132a84.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tiny_http@0.12.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tiny_http-0.12.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tiny_http","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tiny_http-0.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"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtiny_http-fd824c86b02deb32.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-plugin@2.4.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-plugin-2.4.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tauri_plugin","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-plugin-2.4.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":["build"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtauri_plugin-7e8a377c1f1b6362.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtauri_plugin-7e8a377c1f1b6362.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-build@2.4.1","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-build-2.4.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tauri_build","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-build-2.4.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":["config-json","default"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtauri_build-93899f3919007282.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtauri_build-93899f3919007282.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-runtime@2.8.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-runtime-2.8.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tauri_runtime","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-runtime-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":["devtools"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtauri_runtime-8768ccf3a4a06e1b.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-codegen@2.4.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-codegen-2.4.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tauri_codegen","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-codegen-2.4.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":["brotli","compression"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtauri_codegen-b967887ab30b3cc2.rlib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtauri_codegen-b967887ab30b3cc2.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\\Megghy\\.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\\Megghy\\.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":["ring","tls12"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtokio_rustls-e4f4ab184b15629c.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#sysinfo@0.34.2","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\sysinfo-0.34.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"sysinfo","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\sysinfo-0.34.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":["component","default","disk","network","system","user","windows"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libsysinfo-405e22c12c72b08b.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri@2.8.5","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-2.8.5\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-2.8.5\\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":["common-controls-v6","compression","default","devtools","dynamic-acl","image","image-ico","tauri-runtime-wry","tray-icon","webkit2gtk","webview2-com","wry","x11"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\tauri-49b6f874f17a4fa5\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\tauri-49b6f874f17a4fa5\\build_script_build.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-runtime-wry@2.8.1","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-runtime-wry-2.8.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tauri_runtime_wry","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-runtime-wry-2.8.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":["common-controls-v6","devtools","x11"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtauri_runtime_wry-53f9c81a265bd2b4.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-macros@2.4.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-macros-2.4.0\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"tauri_macros","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-macros-2.4.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":["compression"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\tauri_macros-ceb90153946958a7.dll","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\tauri_macros-ceb90153946958a7.dll.lib","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\tauri_macros-ceb90153946958a7.dll.exp","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\tauri_macros-ceb90153946958a7.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-plugin-fs@2.4.2","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-plugin-fs-2.4.2\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-plugin-fs-2.4.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":[],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\tauri-plugin-fs-2b8ba9c80654c660\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\tauri-plugin-fs-2b8ba9c80654c660\\build_script_build.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-plugin-log@2.7.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-plugin-log-2.7.0\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-plugin-log-2.7.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\tauri-plugin-log-150e7e12d49e97c6\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\tauri-plugin-log-150e7e12d49e97c6\\build_script_build.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-plugin-os@2.3.1","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-plugin-os-2.3.1\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-plugin-os-2.3.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\tauri-plugin-os-ae44cd6d397d864f\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\tauri-plugin-os-ae44cd6d397d864f\\build_script_build.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-plugin-updater@2.9.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-plugin-updater-2.9.0\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-plugin-updater-2.9.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","rustls-tls","zip"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\tauri-plugin-updater-5b8ddbf5251f3dd9\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\tauri-plugin-updater-5b8ddbf5251f3dd9\\build_script_build.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-plugin-opener@2.5.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-plugin-opener-2.5.0\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-plugin-opener-2.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":[],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\tauri-plugin-opener-84c839faca8b0900\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\tauri-plugin-opener-84c839faca8b0900\\build_script_build.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-plugin-process@2.3.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-plugin-process-2.3.0\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-plugin-process-2.3.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\tauri-plugin-process-a96bbbbc039037fe\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\tauri-plugin-process-a96bbbbc039037fe\\build_script_build.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-plugin-http@2.5.2","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-plugin-http-2.5.2\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-plugin-http-2.5.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":["charset","cookies","default","http2","macos-system-configuration","rustls-tls","unsafe-headers"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\tauri-plugin-http-6f3993c0a5b13509\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\tauri-plugin-http-6f3993c0a5b13509\\build_script_build.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-plugin-notification@2.3.1","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-plugin-notification-2.3.1\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-plugin-notification-2.3.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\tauri-plugin-notification-539254f928d48e4d\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\tauri-plugin-notification-539254f928d48e4d\\build_script_build.pdb"],"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\\Megghy\\.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\\Megghy\\.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":["http1","http2","ring","tls12","webpki-roots","webpki-tokio"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libhyper_rustls-f1474124047b5082.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-plugin-store@2.4.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-plugin-store-2.4.0\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-plugin-store-2.4.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\tauri-plugin-store-a112514359def4b9\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\tauri-plugin-store-a112514359def4b9\\build_script_build.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-plugin-autostart@2.5.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-plugin-autostart-2.5.0\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-plugin-autostart-2.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":[],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\tauri-plugin-autostart-d5fb2c3651e92a80\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\tauri-plugin-autostart-d5fb2c3651e92a80\\build_script_build.pdb"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"path+file:///G:/vtsuru-fetcher-client/src-tauri#vtsuru-fetcher-client@0.1.5","manifest_path":"G:\\vtsuru-fetcher-client\\src-tauri\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"G:\\vtsuru-fetcher-client\\src-tauri\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\vtsuru-fetcher-client-d74264e71c562fc5\\build-script-build.exe","G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\vtsuru-fetcher-client-d74264e71c562fc5\\build_script_build.pdb"],"executable":null,"fresh":true}
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri@2.8.5","linked_libs":[],"linked_paths":[],"cfgs":["dev","desktop"],"env":[],"out_dir":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\tauri-b94849582586fb4e\\out"}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#reqwest@0.12.23","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\reqwest-0.12.23\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"reqwest","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\reqwest-0.12.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":["__rustls","__rustls-ring","__tls","charset","cookies","h2","http2","json","macos-system-configuration","rustls-tls","rustls-tls-webpki-roots","rustls-tls-webpki-roots-no-provider","stream","system-proxy"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libreqwest-565aab14352d4beb.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri@2.8.5","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-2.8.5\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tauri","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-2.8.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":["common-controls-v6","compression","default","devtools","dynamic-acl","image","image-ico","tauri-runtime-wry","tray-icon","webkit2gtk","webview2-com","wry","x11"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtauri-b4e8ef8bb1b747cd.rmeta"],"executable":null,"fresh":true}
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-plugin-fs@2.4.2","linked_libs":[],"linked_paths":[],"cfgs":["desktop"],"env":[],"out_dir":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\tauri-plugin-fs-e1dded345439a357\\out"}
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-plugin-autostart@2.5.0","linked_libs":[],"linked_paths":[],"cfgs":["desktop"],"env":[],"out_dir":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\tauri-plugin-autostart-f6f8078b8fec5e69\\out"}
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-plugin-log@2.7.0","linked_libs":[],"linked_paths":[],"cfgs":["desktop"],"env":[],"out_dir":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\tauri-plugin-log-83c5581e2e479e4f\\out"}
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-plugin-opener@2.5.0","linked_libs":[],"linked_paths":[],"cfgs":["desktop","desktop"],"env":[],"out_dir":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\tauri-plugin-opener-97955b529e14b179\\out"}
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-plugin-process@2.3.0","linked_libs":[],"linked_paths":[],"cfgs":["desktop"],"env":[],"out_dir":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\tauri-plugin-process-52a68f6be431346e\\out"}
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-plugin-os@2.3.1","linked_libs":[],"linked_paths":[],"cfgs":["desktop"],"env":[],"out_dir":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\tauri-plugin-os-831134f387893954\\out"}
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-plugin-updater@2.9.0","linked_libs":[],"linked_paths":[],"cfgs":["desktop","desktop"],"env":[],"out_dir":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\tauri-plugin-updater-d0a2d11de2d6993d\\out"}
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-plugin-store@2.4.0","linked_libs":[],"linked_paths":[],"cfgs":["desktop"],"env":[],"out_dir":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\tauri-plugin-store-7f70d71a3043db8a\\out"}
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-plugin-notification@2.3.1","linked_libs":[],"linked_paths":[],"cfgs":["desktop"],"env":[],"out_dir":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\tauri-plugin-notification-188defce53d3bb35\\out"}
{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-plugin-http@2.5.2","linked_libs":[],"linked_paths":[],"cfgs":["desktop"],"env":[],"out_dir":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\tauri-plugin-http-65e857d133fcc842\\out"}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-plugin-fs@2.4.2","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-plugin-fs-2.4.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tauri_plugin_fs","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-plugin-fs-2.4.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtauri_plugin_fs-e4c022b24872b4a8.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-plugin-process@2.3.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-plugin-process-2.3.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tauri_plugin_process","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-plugin-process-2.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtauri_plugin_process-83e4d0aa247d9dfb.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-plugin-updater@2.9.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-plugin-updater-2.9.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tauri_plugin_updater","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-plugin-updater-2.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":["default","rustls-tls","zip"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtauri_plugin_updater-cf17b146b9554eff.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-plugin-os@2.3.1","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-plugin-os-2.3.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tauri_plugin_os","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-plugin-os-2.3.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtauri_plugin_os-efa2dc43b83dc81a.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-plugin-store@2.4.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-plugin-store-2.4.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tauri_plugin_store","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-plugin-store-2.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":[],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtauri_plugin_store-a5894cf713817142.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-plugin-opener@2.5.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-plugin-opener-2.5.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tauri_plugin_opener","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-plugin-opener-2.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtauri_plugin_opener-d460b9c74cfe912e.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-plugin-notification@2.3.1","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-plugin-notification-2.3.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tauri_plugin_notification","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-plugin-notification-2.3.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtauri_plugin_notification-df03ed37ebe2d8cb.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-plugin-log@2.7.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-plugin-log-2.7.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tauri_plugin_log","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-plugin-log-2.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtauri_plugin_log-b1ea8f94e84a6408.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-plugin-autostart@2.5.0","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-plugin-autostart-2.5.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tauri_plugin_autostart","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-plugin-autostart-2.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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtauri_plugin_autostart-0052fee19086f6cc.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-plugin-single-instance@2.3.4","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-plugin-single-instance-2.3.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tauri_plugin_single_instance","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-plugin-single-instance-2.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":[],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtauri_plugin_single_instance-194ee77377c948d2.rmeta"],"executable":null,"fresh":true}
{"reason":"build-script-executed","package_id":"path+file:///G:/vtsuru-fetcher-client/src-tauri#vtsuru-fetcher-client@0.1.5","linked_libs":[],"linked_paths":[],"cfgs":["desktop","dev"],"env":[["TAURI_ANDROID_PACKAGE_NAME_APP_NAME","client"],["TAURI_ANDROID_PACKAGE_NAME_PREFIX","live_vtsuru_fetcher"],["TAURI_ENV_TARGET_TRIPLE","x86_64-pc-windows-msvc"]],"out_dir":"G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\build\\vtsuru-fetcher-client-0f82badb7aaef4f2\\out"}
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-plugin-http@2.5.2","manifest_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-plugin-http-2.5.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tauri_plugin_http","src_path":"C:\\Users\\Megghy\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-plugin-http-2.5.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":["charset","cookies","default","http2","macos-system-configuration","rustls-tls","unsafe-headers"],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libtauri_plugin_http-9206e45029723824.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"path+file:///G:/vtsuru-fetcher-client/src-tauri#vtsuru-fetcher-client@0.1.5","manifest_path":"G:\\vtsuru-fetcher-client\\src-tauri\\Cargo.toml","target":{"kind":["staticlib","cdylib","rlib"],"crate_types":["staticlib","cdylib","rlib"],"name":"vtsuru_fetcher_client_lib","src_path":"G:\\vtsuru-fetcher-client\\src-tauri\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libvtsuru_fetcher_client_lib-df511b7084a6a660.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"path+file:///G:/vtsuru-fetcher-client/src-tauri#vtsuru-fetcher-client@0.1.5","manifest_path":"G:\\vtsuru-fetcher-client\\src-tauri\\Cargo.toml","target":{"kind":["staticlib","cdylib","rlib"],"crate_types":["staticlib","cdylib","rlib"],"name":"vtsuru_fetcher_client_lib","src_path":"G:\\vtsuru-fetcher-client\\src-tauri\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":true},"features":[],"filenames":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libvtsuru_fetcher_client_lib-8fe12918f2307e52.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"path+file:///G:/vtsuru-fetcher-client/src-tauri#vtsuru-fetcher-client@0.1.5","manifest_path":"G:\\vtsuru-fetcher-client\\src-tauri\\Cargo.toml","target":{"kind":["bin"],"crate_types":["bin"],"name":"vtsuru-fetcher-client","src_path":"G:\\vtsuru-fetcher-client\\src-tauri\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libvtsuru_fetcher_client-9663d3f8b85e5c36.rmeta"],"executable":null,"fresh":true}
{"reason":"compiler-artifact","package_id":"path+file:///G:/vtsuru-fetcher-client/src-tauri#vtsuru-fetcher-client@0.1.5","manifest_path":"G:\\vtsuru-fetcher-client\\src-tauri\\Cargo.toml","target":{"kind":["bin"],"crate_types":["bin"],"name":"vtsuru-fetcher-client","src_path":"G:\\vtsuru-fetcher-client\\src-tauri\\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":["G:\\vtsuru-fetcher-client\\src-tauri\\target\\debug\\deps\\libvtsuru_fetcher_client-2df2e78e569c11ac.rmeta"],"executable":null,"fresh":true}
{"reason":"build-finished","success":true}