ci: add GitHub Actions workflows for upstream sync and release automation
This commit is contained in:
parent
0d201261c8
commit
5d421e8a76
7035 changed files with 106275 additions and 0 deletions
|
|
@ -0,0 +1 @@
|
|||
This file has an mtime of when this was started.
|
||||
13
api-server/target/debug/build/anyhow-c2abfc38025fedb2/output
Normal file
13
api-server/target/debug/build/anyhow-c2abfc38025fedb2/output
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
cargo:rerun-if-changed=src/nightly.rs
|
||||
cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP
|
||||
cargo:rustc-check-cfg=cfg(anyhow_build_probe)
|
||||
cargo:rustc-check-cfg=cfg(anyhow_nightly_testing)
|
||||
cargo:rustc-check-cfg=cfg(anyhow_no_clippy_format_args)
|
||||
cargo:rustc-check-cfg=cfg(anyhow_no_core_error)
|
||||
cargo:rustc-check-cfg=cfg(anyhow_no_core_unwind_safe)
|
||||
cargo:rustc-check-cfg=cfg(anyhow_no_fmt_arguments_as_str)
|
||||
cargo:rustc-check-cfg=cfg(anyhow_no_ptr_addr_of)
|
||||
cargo:rustc-check-cfg=cfg(anyhow_no_unsafe_op_in_unsafe_fn_lint)
|
||||
cargo:rustc-check-cfg=cfg(error_generic_member_access)
|
||||
cargo:rustc-check-cfg=cfg(std_backtrace)
|
||||
cargo:rustc-cfg=std_backtrace
|
||||
|
|
@ -0,0 +1 @@
|
|||
D:\pi\ConvertX-CN\api-server\target\debug\build\anyhow-c2abfc38025fedb2\out
|
||||
Binary file not shown.
|
|
@ -0,0 +1,5 @@
|
|||
D:\pi\ConvertX-CN\api-server\target\debug\build\anyhow-dbca7c187cb9fc55\build_script_build-dbca7c187cb9fc55.d: C:\Users\季邪\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\anyhow-1.0.100\build.rs
|
||||
|
||||
D:\pi\ConvertX-CN\api-server\target\debug\build\anyhow-dbca7c187cb9fc55\build_script_build-dbca7c187cb9fc55.exe: C:\Users\季邪\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\anyhow-1.0.100\build.rs
|
||||
|
||||
C:\Users\季邪\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\anyhow-1.0.100\build.rs:
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -0,0 +1,5 @@
|
|||
D:\pi\ConvertX-CN\api-server\target\debug\build\async-io-4416b7b5cc7cb0f6\build_script_build-4416b7b5cc7cb0f6.d: C:\Users\季邪\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\async-io-2.6.0\build.rs
|
||||
|
||||
D:\pi\ConvertX-CN\api-server\target\debug\build\async-io-4416b7b5cc7cb0f6\build_script_build-4416b7b5cc7cb0f6.exe: C:\Users\季邪\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\async-io-2.6.0\build.rs
|
||||
|
||||
C:\Users\季邪\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\async-io-2.6.0\build.rs:
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -0,0 +1 @@
|
|||
This file has an mtime of when this was started.
|
||||
|
|
@ -0,0 +1 @@
|
|||
D:\pi\ConvertX-CN\api-server\target\debug\build\async-io-abed27dff1a1a20f\out
|
||||
|
|
@ -0,0 +1 @@
|
|||
This file has an mtime of when this was started.
|
||||
|
|
@ -0,0 +1,282 @@
|
|||
|
||||
/*-------------------------------------------------------------*/
|
||||
/*--- Public header file for the library. ---*/
|
||||
/*--- bzlib.h ---*/
|
||||
/*-------------------------------------------------------------*/
|
||||
|
||||
/* ------------------------------------------------------------------
|
||||
This file is part of bzip2/libbzip2, a program and library for
|
||||
lossless, block-sorting data compression.
|
||||
|
||||
bzip2/libbzip2 version 1.0.8 of 13 July 2019
|
||||
Copyright (C) 1996-2019 Julian Seward <jseward@acm.org>
|
||||
|
||||
Please read the WARNING, DISCLAIMER and PATENTS sections in the
|
||||
README file.
|
||||
|
||||
This program is released under the terms of the license contained
|
||||
in the file LICENSE.
|
||||
------------------------------------------------------------------ */
|
||||
|
||||
|
||||
#ifndef _BZLIB_H
|
||||
#define _BZLIB_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#define BZ_RUN 0
|
||||
#define BZ_FLUSH 1
|
||||
#define BZ_FINISH 2
|
||||
|
||||
#define BZ_OK 0
|
||||
#define BZ_RUN_OK 1
|
||||
#define BZ_FLUSH_OK 2
|
||||
#define BZ_FINISH_OK 3
|
||||
#define BZ_STREAM_END 4
|
||||
#define BZ_SEQUENCE_ERROR (-1)
|
||||
#define BZ_PARAM_ERROR (-2)
|
||||
#define BZ_MEM_ERROR (-3)
|
||||
#define BZ_DATA_ERROR (-4)
|
||||
#define BZ_DATA_ERROR_MAGIC (-5)
|
||||
#define BZ_IO_ERROR (-6)
|
||||
#define BZ_UNEXPECTED_EOF (-7)
|
||||
#define BZ_OUTBUFF_FULL (-8)
|
||||
#define BZ_CONFIG_ERROR (-9)
|
||||
|
||||
typedef
|
||||
struct {
|
||||
char *next_in;
|
||||
unsigned int avail_in;
|
||||
unsigned int total_in_lo32;
|
||||
unsigned int total_in_hi32;
|
||||
|
||||
char *next_out;
|
||||
unsigned int avail_out;
|
||||
unsigned int total_out_lo32;
|
||||
unsigned int total_out_hi32;
|
||||
|
||||
void *state;
|
||||
|
||||
void *(*bzalloc)(void *,int,int);
|
||||
void (*bzfree)(void *,void *);
|
||||
void *opaque;
|
||||
}
|
||||
bz_stream;
|
||||
|
||||
|
||||
#ifndef BZ_IMPORT
|
||||
#define BZ_EXPORT
|
||||
#endif
|
||||
|
||||
#ifndef BZ_NO_STDIO
|
||||
/* Need a definitition for FILE */
|
||||
#include <stdio.h>
|
||||
#endif
|
||||
|
||||
#ifdef _WIN32
|
||||
# include <windows.h>
|
||||
# ifdef small
|
||||
/* windows.h define small to char */
|
||||
# undef small
|
||||
# endif
|
||||
# ifdef BZ_EXPORT
|
||||
# define BZ_API(func) WINAPI func
|
||||
# define BZ_EXTERN extern
|
||||
# else
|
||||
/* import windows dll dynamically */
|
||||
# define BZ_API(func) (WINAPI * func)
|
||||
# define BZ_EXTERN
|
||||
# endif
|
||||
#else
|
||||
# define BZ_API(func) func
|
||||
# define BZ_EXTERN extern
|
||||
#endif
|
||||
|
||||
|
||||
/*-- Core (low-level) library functions --*/
|
||||
|
||||
BZ_EXTERN int BZ_API(BZ2_bzCompressInit) (
|
||||
bz_stream* strm,
|
||||
int blockSize100k,
|
||||
int verbosity,
|
||||
int workFactor
|
||||
);
|
||||
|
||||
BZ_EXTERN int BZ_API(BZ2_bzCompress) (
|
||||
bz_stream* strm,
|
||||
int action
|
||||
);
|
||||
|
||||
BZ_EXTERN int BZ_API(BZ2_bzCompressEnd) (
|
||||
bz_stream* strm
|
||||
);
|
||||
|
||||
BZ_EXTERN int BZ_API(BZ2_bzDecompressInit) (
|
||||
bz_stream *strm,
|
||||
int verbosity,
|
||||
int small
|
||||
);
|
||||
|
||||
BZ_EXTERN int BZ_API(BZ2_bzDecompress) (
|
||||
bz_stream* strm
|
||||
);
|
||||
|
||||
BZ_EXTERN int BZ_API(BZ2_bzDecompressEnd) (
|
||||
bz_stream *strm
|
||||
);
|
||||
|
||||
|
||||
|
||||
/*-- High(er) level library functions --*/
|
||||
|
||||
#ifndef BZ_NO_STDIO
|
||||
#define BZ_MAX_UNUSED 5000
|
||||
|
||||
typedef void BZFILE;
|
||||
|
||||
BZ_EXTERN BZFILE* BZ_API(BZ2_bzReadOpen) (
|
||||
int* bzerror,
|
||||
FILE* f,
|
||||
int verbosity,
|
||||
int small,
|
||||
void* unused,
|
||||
int nUnused
|
||||
);
|
||||
|
||||
BZ_EXTERN void BZ_API(BZ2_bzReadClose) (
|
||||
int* bzerror,
|
||||
BZFILE* b
|
||||
);
|
||||
|
||||
BZ_EXTERN void BZ_API(BZ2_bzReadGetUnused) (
|
||||
int* bzerror,
|
||||
BZFILE* b,
|
||||
void** unused,
|
||||
int* nUnused
|
||||
);
|
||||
|
||||
BZ_EXTERN int BZ_API(BZ2_bzRead) (
|
||||
int* bzerror,
|
||||
BZFILE* b,
|
||||
void* buf,
|
||||
int len
|
||||
);
|
||||
|
||||
BZ_EXTERN BZFILE* BZ_API(BZ2_bzWriteOpen) (
|
||||
int* bzerror,
|
||||
FILE* f,
|
||||
int blockSize100k,
|
||||
int verbosity,
|
||||
int workFactor
|
||||
);
|
||||
|
||||
BZ_EXTERN void BZ_API(BZ2_bzWrite) (
|
||||
int* bzerror,
|
||||
BZFILE* b,
|
||||
void* buf,
|
||||
int len
|
||||
);
|
||||
|
||||
BZ_EXTERN void BZ_API(BZ2_bzWriteClose) (
|
||||
int* bzerror,
|
||||
BZFILE* b,
|
||||
int abandon,
|
||||
unsigned int* nbytes_in,
|
||||
unsigned int* nbytes_out
|
||||
);
|
||||
|
||||
BZ_EXTERN void BZ_API(BZ2_bzWriteClose64) (
|
||||
int* bzerror,
|
||||
BZFILE* b,
|
||||
int abandon,
|
||||
unsigned int* nbytes_in_lo32,
|
||||
unsigned int* nbytes_in_hi32,
|
||||
unsigned int* nbytes_out_lo32,
|
||||
unsigned int* nbytes_out_hi32
|
||||
);
|
||||
#endif
|
||||
|
||||
|
||||
/*-- Utility functions --*/
|
||||
|
||||
BZ_EXTERN int BZ_API(BZ2_bzBuffToBuffCompress) (
|
||||
char* dest,
|
||||
unsigned int* destLen,
|
||||
char* source,
|
||||
unsigned int sourceLen,
|
||||
int blockSize100k,
|
||||
int verbosity,
|
||||
int workFactor
|
||||
);
|
||||
|
||||
BZ_EXTERN int BZ_API(BZ2_bzBuffToBuffDecompress) (
|
||||
char* dest,
|
||||
unsigned int* destLen,
|
||||
char* source,
|
||||
unsigned int sourceLen,
|
||||
int small,
|
||||
int verbosity
|
||||
);
|
||||
|
||||
|
||||
/*--
|
||||
Code contributed by Yoshioka Tsuneo (tsuneo@rr.iij4u.or.jp)
|
||||
to support better zlib compatibility.
|
||||
This code is not _officially_ part of libbzip2 (yet);
|
||||
I haven't tested it, documented it, or considered the
|
||||
threading-safeness of it.
|
||||
If this code breaks, please contact both Yoshioka and me.
|
||||
--*/
|
||||
|
||||
BZ_EXTERN const char * BZ_API(BZ2_bzlibVersion) (
|
||||
void
|
||||
);
|
||||
|
||||
#ifndef BZ_NO_STDIO
|
||||
BZ_EXTERN BZFILE * BZ_API(BZ2_bzopen) (
|
||||
const char *path,
|
||||
const char *mode
|
||||
);
|
||||
|
||||
BZ_EXTERN BZFILE * BZ_API(BZ2_bzdopen) (
|
||||
int fd,
|
||||
const char *mode
|
||||
);
|
||||
|
||||
BZ_EXTERN int BZ_API(BZ2_bzread) (
|
||||
BZFILE* b,
|
||||
void* buf,
|
||||
int len
|
||||
);
|
||||
|
||||
BZ_EXTERN int BZ_API(BZ2_bzwrite) (
|
||||
BZFILE* b,
|
||||
void* buf,
|
||||
int len
|
||||
);
|
||||
|
||||
BZ_EXTERN int BZ_API(BZ2_bzflush) (
|
||||
BZFILE* b
|
||||
);
|
||||
|
||||
BZ_EXTERN void BZ_API(BZ2_bzclose) (
|
||||
BZFILE* b
|
||||
);
|
||||
|
||||
BZ_EXTERN const char * BZ_API(BZ2_bzerror) (
|
||||
BZFILE *b,
|
||||
int *errnum
|
||||
);
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
/*-------------------------------------------------------------*/
|
||||
/*--- end bzlib.h ---*/
|
||||
/*-------------------------------------------------------------*/
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -0,0 +1,76 @@
|
|||
OPT_LEVEL = Some(0)
|
||||
TARGET = Some(x86_64-pc-windows-msvc)
|
||||
CARGO_ENCODED_RUSTFLAGS = Some()
|
||||
cargo:rerun-if-env-changed=VCINSTALLDIR
|
||||
VCINSTALLDIR = None
|
||||
cargo:rerun-if-env-changed=VSTEL_MSBuildProjectFullPath
|
||||
VSTEL_MSBuildProjectFullPath = None
|
||||
cargo:rerun-if-env-changed=VCToolsVersion
|
||||
VCToolsVersion = None
|
||||
cargo:rerun-if-env-changed=VSCMD_ARG_VCVARS_SPECTRE
|
||||
VSCMD_ARG_VCVARS_SPECTRE = None
|
||||
cargo:rerun-if-env-changed=WindowsSdkDir
|
||||
WindowsSdkDir = None
|
||||
cargo:rerun-if-env-changed=WindowsSDKVersion
|
||||
WindowsSDKVersion = None
|
||||
cargo:rerun-if-env-changed=LIB
|
||||
LIB = None
|
||||
PATH = Some(D:\pi\ConvertX-CN\api-server\target\debug\deps;C:\Users\季邪\.rustup\toolchains\stable-x86_64-pc-windows-msvc\lib\rustlib\x86_64-pc-windows-msvc\lib;C:\Program Files\PowerShell\7;c:\Users\季邪\.vscode\extensions\vadimcn.vscode-lldb-1.12.1\bin;c:\Users\季邪\AppData\Roaming\Code\User\globalStorage\github.copilot-chat\debugCommand;c:\Users\季邪\AppData\Roaming\Code\User\globalStorage\github.copilot-chat\copilotCli;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v13.1\bin\x64;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v13.1\bin;C:\Python313\Scripts\;C:\Python313\;D:\NVIDIA\cuda12_1\NVIDIA GPU Computing Toolkit\CUDA\12.1\bin;D:\NVIDIA\cuda12_1\NVIDIA GPU Computing Toolkit\CUDA\12.1\libnvvp;C:\Program Files (x86)\VMware\VMware Workstation\bin\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\Tailscale\;C:\Users\季邪\AppData\Local\Programs\Python\Python38;C;\Users\季邪\AppData\Local\Programs\Python\Python38\Scripts;C:\Program Files\Git\cmd;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\110\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\120\Tools\Binn\;C:\Program Files\Microsoft SQL Server\120\Tools\Binn\;C:\Program Files\Microsoft SQL Server\120\DTS\Binn\;C:\Program Files (x86)\Windows Kits\8.1\Windows Performance Toolkit\;C:\Users\季邪\AppData\Local\Programs\Python\Python311;D:\vs_code\Sign_language\opencv\Scripts;C:\MinGW\bin;C:\mingw64\bin;C:\ProgramData\chocolatey\bin;C:\Program Files\NVIDIA Corporation\NVIDIA App\NvDLISR;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\dotnet\;C:\Users\季邪\AppData\Local\Pandoc\;C:\Program Files\GTK3-Runtime Win64\bin;C:\Program Files\PowerShell\7\;D:\Program Files\nodejs\;C:\Program Files\Go\bin;C:\Program Files\NVIDIA Corporation\Nsight Compute 2025.4.0\;C:\Program Files\Docker\Docker\resources\bin;C:\Program Files\GitHub CLI\;C:\Program Files\WiX Toolset v6.0\bin\;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit\;C:\Program Files (x86)\Windows Kits\10\bin\10.0.26100.0\x64;C:\Users\季邪\.cargo\bin;C:\Users\季邪\.local\bin;C:\Users\季邪\AppData\Local\Programs\Python\Launcher\;D:\anaconda3;D:\anaconda3\Library\mingw-w64\bin;D:\anaconda3\Library\usr\bin;D:\anaconda3\Library\bin;D:\anaconda3\Scripts;C:\Users\季邪\AppData\Local\Programs\Python\Python38\Scripts\;C:\Users\季邪\AppData\Local\Programs\Python\Python38\;C:\Users\季邪\AppData\Local\Programs\Python\Python311\Scripts\;C:\Users\季邪\AppData\Local\Programs\Python\Python311\;C:\Users\季邪\AppData\Local\Microsoft\WindowsApps;C:\Users\季邪\AppData\Local\Programs\Microsoft VS Code\bin;D:\vs_code\flutter\bin;C:\Users\季邪\AppData\Local\Programs\Python\Python312\;C:\Users\季邪\AppData\Local\Programs\Python\Python312\\scripts;C:\Users\季邪\AppData\Local\Pandoc\;C:\Users\季邪\.bun\bin;C:\Users\季邪\AppData\Roaming\npm;C:\Users\季邪\AppData\Local\Microsoft\WinGet\Packages\astral-sh.uv_Microsoft.Winget.Source_8wekyb3d8bbwe;C:\Users\季邪\AppData\Local\Microsoft\WinGet\Packages\Oven-sh.Bun_Microsoft.Winget.Source_8wekyb3d8bbwe\./bun-windows-x64;C:\Users\季邪\go\bin;C:\Program Files\JetBrains\JetBrains Gateway 2025.3\bin;c:\Users\季邪\.vscode\extensions\ms-python.debugpy-2025.18.0-win32-x64\bundled\scripts\noConfigScripts;C:\Users\季邪\.rustup\toolchains\stable-x86_64-pc-windows-msvc\bin)
|
||||
cargo:rerun-if-env-changed=INCLUDE
|
||||
INCLUDE = None
|
||||
HOST = Some(x86_64-pc-windows-msvc)
|
||||
cargo:rerun-if-env-changed=CC_x86_64-pc-windows-msvc
|
||||
CC_x86_64-pc-windows-msvc = None
|
||||
cargo:rerun-if-env-changed=CC_x86_64_pc_windows_msvc
|
||||
CC_x86_64_pc_windows_msvc = None
|
||||
cargo:rerun-if-env-changed=HOST_CC
|
||||
HOST_CC = None
|
||||
cargo:rerun-if-env-changed=CC
|
||||
CC = None
|
||||
cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS
|
||||
CRATE_CC_NO_DEFAULTS = None
|
||||
CARGO_CFG_TARGET_FEATURE = Some(cmpxchg16b,fxsr,sse,sse2,sse3)
|
||||
DEBUG = Some(true)
|
||||
cargo:rerun-if-env-changed=CFLAGS
|
||||
CFLAGS = None
|
||||
cargo:rerun-if-env-changed=HOST_CFLAGS
|
||||
HOST_CFLAGS = None
|
||||
cargo:rerun-if-env-changed=CFLAGS_x86_64_pc_windows_msvc
|
||||
CFLAGS_x86_64_pc_windows_msvc = None
|
||||
cargo:rerun-if-env-changed=CFLAGS_x86_64-pc-windows-msvc
|
||||
CFLAGS_x86_64-pc-windows-msvc = None
|
||||
cargo:rerun-if-env-changed=CC_ENABLE_DEBUG_OUTPUT
|
||||
blocksort.c
|
||||
huffman.c
|
||||
crctable.c
|
||||
randtable.c
|
||||
compress.c
|
||||
decompress.c
|
||||
bzlib.c
|
||||
exit code: 0
|
||||
exit code: 0
|
||||
exit code: 0
|
||||
exit code: 0
|
||||
exit code: 0
|
||||
exit code: 0
|
||||
exit code: 0
|
||||
cargo:rerun-if-env-changed=AR_x86_64-pc-windows-msvc
|
||||
AR_x86_64-pc-windows-msvc = None
|
||||
cargo:rerun-if-env-changed=AR_x86_64_pc_windows_msvc
|
||||
AR_x86_64_pc_windows_msvc = None
|
||||
cargo:rerun-if-env-changed=HOST_AR
|
||||
HOST_AR = None
|
||||
cargo:rerun-if-env-changed=AR
|
||||
AR = None
|
||||
cargo:rerun-if-env-changed=ARFLAGS
|
||||
ARFLAGS = None
|
||||
cargo:rerun-if-env-changed=HOST_ARFLAGS
|
||||
HOST_ARFLAGS = None
|
||||
cargo:rerun-if-env-changed=ARFLAGS_x86_64_pc_windows_msvc
|
||||
ARFLAGS_x86_64_pc_windows_msvc = None
|
||||
cargo:rerun-if-env-changed=ARFLAGS_x86_64-pc-windows-msvc
|
||||
ARFLAGS_x86_64-pc-windows-msvc = None
|
||||
cargo:rustc-link-lib=static=bz2
|
||||
cargo:rustc-link-search=native=D:\pi\ConvertX-CN\api-server\target\debug\build\bzip2-sys-32a310ea7325ed5f\out\lib
|
||||
cargo:root=D:\pi\ConvertX-CN\api-server\target\debug\build\bzip2-sys-32a310ea7325ed5f\out
|
||||
cargo:include=D:\pi\ConvertX-CN\api-server\target\debug\build\bzip2-sys-32a310ea7325ed5f\out\include
|
||||
|
|
@ -0,0 +1 @@
|
|||
D:\pi\ConvertX-CN\api-server\target\debug\build\bzip2-sys-32a310ea7325ed5f\out
|
||||
Binary file not shown.
|
|
@ -0,0 +1,5 @@
|
|||
D:\pi\ConvertX-CN\api-server\target\debug\build\bzip2-sys-777611bce482cd56\build_script_build-777611bce482cd56.d: C:\Users\季邪\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\bzip2-sys-0.1.13+1.0.8\build.rs
|
||||
|
||||
D:\pi\ConvertX-CN\api-server\target\debug\build\bzip2-sys-777611bce482cd56\build_script_build-777611bce482cd56.exe: C:\Users\季邪\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\bzip2-sys-0.1.13+1.0.8\build.rs
|
||||
|
||||
C:\Users\季邪\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\bzip2-sys-0.1.13+1.0.8\build.rs:
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -0,0 +1 @@
|
|||
This file has an mtime of when this was started.
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
cargo:rustc-cfg=stable_arm_crc32_intrinsics
|
||||
cargo:rustc-check-cfg=cfg(stable_arm_crc32_intrinsics)
|
||||
|
|
@ -0,0 +1 @@
|
|||
D:\pi\ConvertX-CN\api-server\target\debug\build\crc32fast-63cf0ba0e8a1c31c\out
|
||||
Binary file not shown.
|
|
@ -0,0 +1,5 @@
|
|||
D:\pi\ConvertX-CN\api-server\target\debug\build\crc32fast-91c576a6d1d22b67\build_script_build-91c576a6d1d22b67.d: C:\Users\季邪\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\crc32fast-1.5.0\build.rs
|
||||
|
||||
D:\pi\ConvertX-CN\api-server\target\debug\build\crc32fast-91c576a6d1d22b67\build_script_build-91c576a6d1d22b67.exe: C:\Users\季邪\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\crc32fast-1.5.0\build.rs
|
||||
|
||||
C:\Users\季邪\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\crc32fast-1.5.0\build.rs:
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -0,0 +1 @@
|
|||
This file has an mtime of when this was started.
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
cargo:rerun-if-changed=no_atomic.rs
|
||||
cargo:rustc-check-cfg=cfg(crossbeam_no_atomic,crossbeam_sanitize_thread)
|
||||
|
|
@ -0,0 +1 @@
|
|||
D:\pi\ConvertX-CN\api-server\target\debug\build\crossbeam-utils-616ed4df88b47455\out
|
||||
Binary file not shown.
|
|
@ -0,0 +1,9 @@
|
|||
D:\pi\ConvertX-CN\api-server\target\debug\build\crossbeam-utils-e50c4599fcb13022\build_script_build-e50c4599fcb13022.d: C:\Users\季邪\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\crossbeam-utils-0.8.21\build.rs C:\Users\季邪\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\crossbeam-utils-0.8.21\no_atomic.rs C:\Users\季邪\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\crossbeam-utils-0.8.21\build-common.rs
|
||||
|
||||
D:\pi\ConvertX-CN\api-server\target\debug\build\crossbeam-utils-e50c4599fcb13022\build_script_build-e50c4599fcb13022.exe: C:\Users\季邪\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\crossbeam-utils-0.8.21\build.rs C:\Users\季邪\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\crossbeam-utils-0.8.21\no_atomic.rs C:\Users\季邪\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\crossbeam-utils-0.8.21\build-common.rs
|
||||
|
||||
C:\Users\季邪\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\crossbeam-utils-0.8.21\build.rs:
|
||||
C:\Users\季邪\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\crossbeam-utils-0.8.21\no_atomic.rs:
|
||||
C:\Users\季邪\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\crossbeam-utils-0.8.21\build-common.rs:
|
||||
|
||||
# env-dep:CARGO_PKG_NAME=crossbeam-utils
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -0,0 +1,5 @@
|
|||
D:\pi\ConvertX-CN\api-server\target\debug\build\generic-array-0be271e4b611811c\build_script_build-0be271e4b611811c.d: C:\Users\季邪\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\generic-array-0.14.7\build.rs
|
||||
|
||||
D:\pi\ConvertX-CN\api-server\target\debug\build\generic-array-0be271e4b611811c\build_script_build-0be271e4b611811c.exe: C:\Users\季邪\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\generic-array-0.14.7\build.rs
|
||||
|
||||
C:\Users\季邪\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\generic-array-0.14.7\build.rs:
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -0,0 +1 @@
|
|||
This file has an mtime of when this was started.
|
||||
|
|
@ -0,0 +1 @@
|
|||
cargo:rustc-cfg=relaxed_coherence
|
||||
|
|
@ -0,0 +1 @@
|
|||
D:\pi\ConvertX-CN\api-server\target\debug\build\generic-array-65d945cb94366cb4\out
|
||||
Binary file not shown.
|
|
@ -0,0 +1,5 @@
|
|||
D:\pi\ConvertX-CN\api-server\target\debug\build\getrandom-29edfc93dbdc717c\build_script_build-29edfc93dbdc717c.d: C:\Users\季邪\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\getrandom-0.3.4\build.rs
|
||||
|
||||
D:\pi\ConvertX-CN\api-server\target\debug\build\getrandom-29edfc93dbdc717c\build_script_build-29edfc93dbdc717c.exe: C:\Users\季邪\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\getrandom-0.3.4\build.rs
|
||||
|
||||
C:\Users\季邪\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\getrandom-0.3.4\build.rs:
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -0,0 +1,5 @@
|
|||
D:\pi\ConvertX-CN\api-server\target\debug\build\getrandom-4a4ab2f1cd43b94a\build_script_build-4a4ab2f1cd43b94a.d: C:\Users\季邪\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\getrandom-0.3.4\build.rs
|
||||
|
||||
D:\pi\ConvertX-CN\api-server\target\debug\build\getrandom-4a4ab2f1cd43b94a\build_script_build-4a4ab2f1cd43b94a.exe: C:\Users\季邪\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\getrandom-0.3.4\build.rs
|
||||
|
||||
C:\Users\季邪\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\getrandom-0.3.4\build.rs:
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -0,0 +1 @@
|
|||
This file has an mtime of when this was started.
|
||||
|
|
@ -0,0 +1 @@
|
|||
cargo:rerun-if-changed=build.rs
|
||||
|
|
@ -0,0 +1 @@
|
|||
D:\pi\ConvertX-CN\api-server\target\debug\build\getrandom-82e16ed19c869808\out
|
||||
|
|
@ -0,0 +1 @@
|
|||
This file has an mtime of when this was started.
|
||||
|
|
@ -0,0 +1 @@
|
|||
cargo:rerun-if-changed=build.rs
|
||||
|
|
@ -0,0 +1 @@
|
|||
D:\pi\ConvertX-CN\api-server\target\debug\build\getrandom-9c74d2b39164ec1d\out
|
||||
|
|
@ -0,0 +1 @@
|
|||
This file has an mtime of when this was started.
|
||||
|
|
@ -0,0 +1 @@
|
|||
cargo:rerun-if-changed=build.rs
|
||||
|
|
@ -0,0 +1 @@
|
|||
D:\pi\ConvertX-CN\api-server\target\debug\build\getrandom-dc946faf442d75dd\out
|
||||
|
|
@ -0,0 +1 @@
|
|||
This file has an mtime of when this was started.
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
cargo:rustc-cfg=httparse_simd_neon_intrinsics
|
||||
cargo:rustc-cfg=httparse_simd
|
||||
|
|
@ -0,0 +1 @@
|
|||
D:\pi\ConvertX-CN\api-server\target\debug\build\httparse-1064384ef34368a4\out
|
||||
Binary file not shown.
|
|
@ -0,0 +1,5 @@
|
|||
D:\pi\ConvertX-CN\api-server\target\debug\build\httparse-635073f26027de70\build_script_build-635073f26027de70.d: C:\Users\季邪\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\httparse-1.10.1\build.rs
|
||||
|
||||
D:\pi\ConvertX-CN\api-server\target\debug\build\httparse-635073f26027de70\build_script_build-635073f26027de70.exe: C:\Users\季邪\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\httparse-1.10.1\build.rs
|
||||
|
||||
C:\Users\季邪\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\httparse-1.10.1\build.rs:
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -0,0 +1,5 @@
|
|||
D:\pi\ConvertX-CN\api-server\target\debug\build\icu_normalizer_data-1103ca9ba065819a\build_script_build-1103ca9ba065819a.d: C:\Users\季邪\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\icu_normalizer_data-2.1.1\build.rs
|
||||
|
||||
D:\pi\ConvertX-CN\api-server\target\debug\build\icu_normalizer_data-1103ca9ba065819a\build_script_build-1103ca9ba065819a.exe: C:\Users\季邪\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\icu_normalizer_data-2.1.1\build.rs
|
||||
|
||||
C:\Users\季邪\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\icu_normalizer_data-2.1.1\build.rs:
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue