将数据库修改到本地配置文件,修复工单没创建成功依旧会写入数据库的问题

This commit is contained in:
Yakumo Hokori
2026-02-24 16:00:43 +08:00
parent 5e03e76177
commit 1b36901a70
2048 changed files with 41630 additions and 40 deletions

111
src-tauri/Cargo.lock generated
View File

@@ -769,13 +769,34 @@ dependencies = [
"subtle",
]
[[package]]
name = "dirs"
version = "5.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
dependencies = [
"dirs-sys 0.4.1",
]
[[package]]
name = "dirs"
version = "6.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
dependencies = [
"dirs-sys",
"dirs-sys 0.5.0",
]
[[package]]
name = "dirs-sys"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
dependencies = [
"libc",
"option-ext",
"redox_users 0.4.6",
"windows-sys 0.48.0",
]
[[package]]
@@ -786,7 +807,7 @@ checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
dependencies = [
"libc",
"option-ext",
"redox_users",
"redox_users 0.5.0",
"windows-sys 0.60.2",
]
@@ -3246,6 +3267,17 @@ dependencies = [
"bitflags 2.9.1",
]
[[package]]
name = "redox_users"
version = "0.4.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
dependencies = [
"getrandom 0.2.16",
"libredox",
"thiserror 1.0.69",
]
[[package]]
name = "redox_users"
version = "0.5.0"
@@ -4091,7 +4123,7 @@ checksum = "124e129c9c0faa6bec792c5948c89e86c90094133b0b9044df0ce5f0a8efaa0d"
dependencies = [
"anyhow",
"bytes",
"dirs",
"dirs 6.0.0",
"dunce",
"embed_plist",
"getrandom 0.3.3",
@@ -4141,7 +4173,7 @@ checksum = "12f025c389d3adb83114bec704da973142e82fc6ec799c7c750c5e21cefaec83"
dependencies = [
"anyhow",
"cargo_toml",
"dirs",
"dirs 6.0.0",
"glob",
"heck 0.5.0",
"json-patch",
@@ -4457,6 +4489,7 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
name = "tms_service"
version = "0.1.0"
dependencies = [
"anyhow",
"html_scraper",
"reqwest",
"serde",
@@ -4469,6 +4502,7 @@ name = "tms_tools"
version = "0.1.7"
dependencies = [
"chrono",
"dirs 5.0.1",
"lazy_static",
"reqwest",
"scraper",
@@ -4480,6 +4514,7 @@ dependencies = [
"tms_service",
"tokio",
"tokio-postgres",
"toml 0.8.23",
]
[[package]]
@@ -4757,7 +4792,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2da75ec677957aa21f6e0b361df0daab972f13a5bee3606de0638fd4ee1c666a"
dependencies = [
"crossbeam-channel",
"dirs",
"dirs 6.0.0",
"libappindicator",
"muda",
"objc2 0.6.1",
@@ -5372,6 +5407,15 @@ dependencies = [
"windows-targets 0.42.2",
]
[[package]]
name = "windows-sys"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
dependencies = [
"windows-targets 0.48.5",
]
[[package]]
name = "windows-sys"
version = "0.52.0"
@@ -5414,6 +5458,21 @@ dependencies = [
"windows_x86_64_msvc 0.42.2",
]
[[package]]
name = "windows-targets"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
dependencies = [
"windows_aarch64_gnullvm 0.48.5",
"windows_aarch64_msvc 0.48.5",
"windows_i686_gnu 0.48.5",
"windows_i686_msvc 0.48.5",
"windows_x86_64_gnu 0.48.5",
"windows_x86_64_gnullvm 0.48.5",
"windows_x86_64_msvc 0.48.5",
]
[[package]]
name = "windows-targets"
version = "0.52.6"
@@ -5470,6 +5529,12 @@ version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.52.6"
@@ -5488,6 +5553,12 @@ version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
[[package]]
name = "windows_aarch64_msvc"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
[[package]]
name = "windows_aarch64_msvc"
version = "0.52.6"
@@ -5506,6 +5577,12 @@ version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
[[package]]
name = "windows_i686_gnu"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
[[package]]
name = "windows_i686_gnu"
version = "0.52.6"
@@ -5536,6 +5613,12 @@ version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
[[package]]
name = "windows_i686_msvc"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
[[package]]
name = "windows_i686_msvc"
version = "0.52.6"
@@ -5554,6 +5637,12 @@ version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
[[package]]
name = "windows_x86_64_gnu"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
[[package]]
name = "windows_x86_64_gnu"
version = "0.52.6"
@@ -5572,6 +5661,12 @@ version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.52.6"
@@ -5590,6 +5685,12 @@ version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
[[package]]
name = "windows_x86_64_msvc"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
[[package]]
name = "windows_x86_64_msvc"
version = "0.52.6"

View File

@@ -29,4 +29,6 @@ reqwest = { version = "0.12.22", features = ["json", "cookies"] }
lazy_static = "1.4.0"
scraper = "0.19.0"
tms_service = { path = "./tms_service" }
dirs = "5"
toml = "0.8"

View File

@@ -1 +1 @@
{"rustc_fingerprint":7455309615728791268,"outputs":{"13331785392996375709":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.dylib\nlib___.dylib\nlib___.a\nlib___.dylib\n/Users/hokori/.rustup/toolchains/stable-aarch64-apple-darwin\noff\npacked\nunpacked\n___\ndebug_assertions\npanic=\"unwind\"\nproc_macro\ntarget_abi=\"\"\ntarget_arch=\"aarch64\"\ntarget_endian=\"little\"\ntarget_env=\"\"\ntarget_family=\"unix\"\ntarget_feature=\"aes\"\ntarget_feature=\"crc\"\ntarget_feature=\"dit\"\ntarget_feature=\"dotprod\"\ntarget_feature=\"dpb\"\ntarget_feature=\"dpb2\"\ntarget_feature=\"fcma\"\ntarget_feature=\"fhm\"\ntarget_feature=\"flagm\"\ntarget_feature=\"fp16\"\ntarget_feature=\"frintts\"\ntarget_feature=\"jsconv\"\ntarget_feature=\"lor\"\ntarget_feature=\"lse\"\ntarget_feature=\"neon\"\ntarget_feature=\"paca\"\ntarget_feature=\"pacg\"\ntarget_feature=\"pan\"\ntarget_feature=\"pmuv3\"\ntarget_feature=\"ras\"\ntarget_feature=\"rcpc\"\ntarget_feature=\"rcpc2\"\ntarget_feature=\"rdm\"\ntarget_feature=\"sb\"\ntarget_feature=\"sha2\"\ntarget_feature=\"sha3\"\ntarget_feature=\"ssbs\"\ntarget_feature=\"vh\"\ntarget_has_atomic=\"128\"\ntarget_has_atomic=\"16\"\ntarget_has_atomic=\"32\"\ntarget_has_atomic=\"64\"\ntarget_has_atomic=\"8\"\ntarget_has_atomic=\"ptr\"\ntarget_os=\"macos\"\ntarget_pointer_width=\"64\"\ntarget_vendor=\"apple\"\nunix\n","stderr":""},"17747080675513052775":{"success":true,"status":"","code":0,"stdout":"rustc 1.85.1 (4eb161250 2025-03-15)\nbinary: rustc\ncommit-hash: 4eb161250e340c8f48f66e2b929ef4a5bed7c181\ncommit-date: 2025-03-15\nhost: aarch64-apple-darwin\nrelease: 1.85.1\nLLVM version: 19.1.7\n","stderr":""}},"successes":{}}
{"rustc_fingerprint":5950026530320907442,"outputs":{"17747080675513052775":{"success":true,"status":"","code":0,"stdout":"rustc 1.93.0 (254b59607 2026-01-19)\nbinary: rustc\ncommit-hash: 254b59607d4417e9dffbc307138ae5c86280fe4c\ncommit-date: 2026-01-19\nhost: aarch64-apple-darwin\nrelease: 1.93.0\nLLVM version: 21.1.8\n","stderr":""},"7971740275564407648":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.dylib\nlib___.dylib\nlib___.a\nlib___.dylib\n/Users/hokori/.rustup/toolchains/stable-aarch64-apple-darwin\noff\npacked\nunpacked\n___\ndebug_assertions\npanic=\"unwind\"\nproc_macro\ntarget_abi=\"\"\ntarget_arch=\"aarch64\"\ntarget_endian=\"little\"\ntarget_env=\"\"\ntarget_family=\"unix\"\ntarget_feature=\"aes\"\ntarget_feature=\"crc\"\ntarget_feature=\"dit\"\ntarget_feature=\"dotprod\"\ntarget_feature=\"dpb\"\ntarget_feature=\"dpb2\"\ntarget_feature=\"fcma\"\ntarget_feature=\"fhm\"\ntarget_feature=\"flagm\"\ntarget_feature=\"fp16\"\ntarget_feature=\"frintts\"\ntarget_feature=\"jsconv\"\ntarget_feature=\"lor\"\ntarget_feature=\"lse\"\ntarget_feature=\"neon\"\ntarget_feature=\"paca\"\ntarget_feature=\"pacg\"\ntarget_feature=\"pan\"\ntarget_feature=\"pmuv3\"\ntarget_feature=\"ras\"\ntarget_feature=\"rcpc\"\ntarget_feature=\"rcpc2\"\ntarget_feature=\"rdm\"\ntarget_feature=\"sb\"\ntarget_feature=\"sha2\"\ntarget_feature=\"sha3\"\ntarget_feature=\"ssbs\"\ntarget_feature=\"vh\"\ntarget_has_atomic=\"128\"\ntarget_has_atomic=\"16\"\ntarget_has_atomic=\"32\"\ntarget_has_atomic=\"64\"\ntarget_has_atomic=\"8\"\ntarget_has_atomic=\"ptr\"\ntarget_os=\"macos\"\ntarget_pointer_width=\"64\"\ntarget_vendor=\"apple\"\nunix\n","stderr":""}},"successes":{}}

View File

@@ -0,0 +1 @@
{"rustc_fingerprint":9158950504090421981,"outputs":{"1611179108920590944":{"success":true,"status":"","code":0,"stdout":"rustc 1.87.0 (17067e9ac 2025-05-09)\nbinary: rustc\ncommit-hash: 17067e9ac6d7ecb70e50f92c1944e545188d2359\ncommit-date: 2025-05-09\nhost: aarch64-apple-darwin\nrelease: 1.87.0\nLLVM version: 20.1.1\n","stderr":""},"16695856322010688557":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.dylib\nlib___.dylib\nlib___.a\nlib___.dylib\n/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin\noff\npacked\nunpacked\n___\ndebug_assertions\nfmt_debug=\"full\"\noverflow_checks\npanic=\"unwind\"\nproc_macro\nrelocation_model=\"pic\"\ntarget_abi=\"\"\ntarget_arch=\"aarch64\"\ntarget_endian=\"little\"\ntarget_env=\"\"\ntarget_family=\"unix\"\ntarget_feature=\"aes\"\ntarget_feature=\"crc\"\ntarget_feature=\"dit\"\ntarget_feature=\"dotprod\"\ntarget_feature=\"dpb\"\ntarget_feature=\"dpb2\"\ntarget_feature=\"fcma\"\ntarget_feature=\"fhm\"\ntarget_feature=\"flagm\"\ntarget_feature=\"flagm2\"\ntarget_feature=\"fp16\"\ntarget_feature=\"frintts\"\ntarget_feature=\"jsconv\"\ntarget_feature=\"lor\"\ntarget_feature=\"lse\"\ntarget_feature=\"lse2\"\ntarget_feature=\"neon\"\ntarget_feature=\"paca\"\ntarget_feature=\"pacg\"\ntarget_feature=\"pan\"\ntarget_feature=\"pmuv3\"\ntarget_feature=\"ras\"\ntarget_feature=\"rcpc\"\ntarget_feature=\"rcpc2\"\ntarget_feature=\"rdm\"\ntarget_feature=\"sb\"\ntarget_feature=\"sha2\"\ntarget_feature=\"sha3\"\ntarget_feature=\"ssbs\"\ntarget_feature=\"v8.1a\"\ntarget_feature=\"v8.2a\"\ntarget_feature=\"v8.3a\"\ntarget_feature=\"v8.4a\"\ntarget_feature=\"vh\"\ntarget_has_atomic\ntarget_has_atomic=\"128\"\ntarget_has_atomic=\"16\"\ntarget_has_atomic=\"32\"\ntarget_has_atomic=\"64\"\ntarget_has_atomic=\"8\"\ntarget_has_atomic=\"ptr\"\ntarget_has_atomic_equal_alignment=\"128\"\ntarget_has_atomic_equal_alignment=\"16\"\ntarget_has_atomic_equal_alignment=\"32\"\ntarget_has_atomic_equal_alignment=\"64\"\ntarget_has_atomic_equal_alignment=\"8\"\ntarget_has_atomic_equal_alignment=\"ptr\"\ntarget_has_atomic_load_store\ntarget_has_atomic_load_store=\"128\"\ntarget_has_atomic_load_store=\"16\"\ntarget_has_atomic_load_store=\"32\"\ntarget_has_atomic_load_store=\"64\"\ntarget_has_atomic_load_store=\"8\"\ntarget_has_atomic_load_store=\"ptr\"\ntarget_os=\"macos\"\ntarget_pointer_width=\"64\"\ntarget_thread_local\ntarget_vendor=\"apple\"\nub_checks\nunix\n","stderr":""}},"successes":{}}

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1 @@
{"rustc":15497389221046826682,"features":"[\"default\", \"getrandom\", \"runtime-rng\", \"std\"]","declared_features":"[\"atomic-polyfill\", \"compile-time-rng\", \"const-random\", \"default\", \"getrandom\", \"nightly-arm-aes\", \"no-rng\", \"runtime-rng\", \"serde\", \"std\"]","target":17883862002600103897,"profile":3033921117576893,"path":17920999637309774808,"deps":[[5398981501050481332,"version_check",false,7805814245542558566]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/ahash-3dd7d030eeabe912/dep-build-script-build-script-build","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0}

View File

@@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@@ -0,0 +1 @@
{"rustc":15497389221046826682,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[966925859616469517,"build_script_build",false,6883456863370045110]],"local":[{"RerunIfChanged":{"output":"debug/build/ahash-c55aa2f3a000e411/output","paths":["build.rs"]}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":0,"compile_kind":0}

View File

@@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@@ -0,0 +1 @@
f4fa01de64df80ad

View File

@@ -0,0 +1 @@
{"rustc":15497389221046826682,"features":"[\"default\", \"getrandom\", \"runtime-rng\", \"std\"]","declared_features":"[\"atomic-polyfill\", \"compile-time-rng\", \"const-random\", \"default\", \"getrandom\", \"nightly-arm-aes\", \"no-rng\", \"runtime-rng\", \"serde\", \"std\"]","target":8470944000320059508,"profile":8276155916380437441,"path":12810807120029859987,"deps":[[966925859616469517,"build_script_build",false,6292428260787988984],[3331586631144870129,"getrandom",false,3822032069953742984],[3722963349756955755,"once_cell",false,9649834255008937173],[7843059260364151289,"cfg_if",false,3334986249336963704],[13102401248396471120,"zerocopy",false,11683912439845224440]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/ahash-cf5adf12f91a3f07/dep-lib-ahash","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0}

View File

@@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@@ -0,0 +1 @@
{"rustc":15497389221046826682,"features":"[\"perf-literal\", \"std\"]","declared_features":"[\"default\", \"logging\", \"perf-literal\", \"std\"]","target":7534583537114156500,"profile":8276155916380437441,"path":11139722221124632792,"deps":[[198136567835728122,"memchr",false,4121246264241880933]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/aho-corasick-4a71a11a304f34de/dep-lib-aho_corasick","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0}

View File

@@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@@ -0,0 +1 @@
{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":6962977057026645649,"profile":3033921117576893,"path":4816054105157844318,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/autocfg-3036797dcbb68a8c/dep-lib-autocfg","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0}

View File

@@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@@ -0,0 +1 @@
{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"arbitrary\", \"bytemuck\", \"example_generated\", \"serde\", \"std\"]","target":7691312148208718491,"profile":8276155916380437441,"path":18317973836223632092,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/bitflags-47fb54c026abfaca/dep-lib-bitflags","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0}

View File

@@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@@ -0,0 +1 @@
{"rustc":15497389221046826682,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"i128\", \"std\"]","target":8344828840634961491,"profile":8276155916380437441,"path":12354199761892589061,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/byteorder-4b4e71c2bcc1ba60/dep-lib-byteorder","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0}

View File

@@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@@ -0,0 +1 @@
ee825bdf5a3b9717

View File

@@ -0,0 +1 @@
{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"core\", \"rustc-dep-of-std\"]","target":13840298032947503755,"profile":3033921117576893,"path":18047468991854014316,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/cfg-if-22c5faecaaf90584/dep-lib-cfg_if","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0}

View File

@@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@@ -0,0 +1 @@
78c28a025340482e

View File

@@ -0,0 +1 @@
{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"core\", \"rustc-dep-of-std\"]","target":13840298032947503755,"profile":8276155916380437441,"path":18047468991854014316,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/cfg-if-24c926a9096103c7/dep-lib-cfg_if","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0}

View File

@@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@@ -0,0 +1 @@
{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"bench\", \"dummy_match_byte\", \"serde\"]","target":4051351535474248705,"profile":8276155916380437441,"path":11693278406116127147,"deps":[[3666196340704888985,"smallvec",false,14194441167904933901],[7695812897323945497,"itoa",false,3107599212972511736],[9280804215119811138,"cssparser_macros",false,11991358206820667840],[12842584195496215797,"dtoa_short",false,5046940966649730623],[17186037756130803222,"phf",false,3275485335853316039]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/cssparser-288940f99e39038a/dep-lib-cssparser","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0}

View File

@@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@@ -0,0 +1 @@
{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":4853353551047732211,"profile":3033921117576893,"path":330677744058670353,"deps":[[17332570067994900305,"syn",false,17971348096264547987],[17990358020177143287,"quote",false,18137893867194747271]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/cssparser-macros-7723e16b38393b19/dep-lib-cssparser_macros","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0}

View File

@@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@@ -0,0 +1 @@
{"rustc":15497389221046826682,"features":"[\"add\", \"add_assign\"]","declared_features":"[\"add\", \"add_assign\", \"as_mut\", \"as_ref\", \"constructor\", \"convert_case\", \"default\", \"deref\", \"deref_mut\", \"display\", \"error\", \"from\", \"from_str\", \"generate-parsing-rs\", \"index\", \"index_mut\", \"into\", \"into_iterator\", \"is_variant\", \"iterator\", \"mul\", \"mul_assign\", \"nightly\", \"not\", \"peg\", \"rustc_version\", \"sum\", \"testing-helpers\", \"track-caller\", \"try_into\", \"unwrap\"]","target":12153973509411789784,"profile":3033921117576893,"path":7715744502101933300,"deps":[[373107762698212489,"proc_macro2",false,11352822849591009774],[17332570067994900305,"syn",false,17971348096264547987],[17990358020177143287,"quote",false,18137893867194747271]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/derive_more-1f55f046a174a726/dep-lib-derive_more","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0}

View File

@@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@@ -0,0 +1 @@
928fa0f3f728f603

View File

@@ -0,0 +1 @@
{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"no-panic\"]","target":822708863277375670,"profile":8276155916380437441,"path":14027389299766794047,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/dtoa-e1b5b1d152ea2e94/dep-lib-dtoa","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0}

View File

@@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@@ -0,0 +1 @@
{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":14166870648037865358,"profile":8276155916380437441,"path":5752282311582272956,"deps":[[9187552546091909091,"dtoa",false,285460671794024338]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/dtoa-short-ddc69d4b6aa0e19b/dep-lib-dtoa_short","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0}

View File

@@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@@ -0,0 +1 @@
{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":15686662276775554462,"profile":8276155916380437441,"path":3922949300094133188,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/ego-tree-809c8514ee657827/dep-lib-ego_tree","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0}

View File

@@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@@ -0,0 +1 @@
9ced3c82b2b54312

View File

@@ -0,0 +1 @@
{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":14342764474404802961,"profile":8276155916380437441,"path":8384350080134491944,"deps":[[2687729594444538932,"debug_unreachable",false,9754738614369676465],[10952224881603935644,"mac",false,3938639248673190958]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/futf-3d480dde70c9eb27/dep-lib-futf","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0}

View File

@@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@@ -0,0 +1 @@
e8ab1c5f48ebda27

View File

@@ -0,0 +1 @@
{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":10973188114720300281,"profile":8276155916380437441,"path":15035325997359553401,"deps":[[3712811570531045576,"byteorder",false,13758021138813043257]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/fxhash-655a24a699d73c8e/dep-lib-fxhash","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0}

View File

@@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@@ -0,0 +1 @@
{"rustc":15497389221046826682,"features":"[\"default\", \"unicode\"]","declared_features":"[\"core\", \"default\", \"rustc-dep-of-std\", \"std\", \"unicode\"]","target":14000208569025797744,"profile":8276155916380437441,"path":12630201017420769364,"deps":[[13774335185398496026,"unicode_width",false,11780933250261401939]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/getopts-3bd88005c8a6f4a9/dep-lib-getopts","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0}

View File

@@ -0,0 +1 @@
{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"rustc-dep-of-std\", \"std\", \"wasm_js\"]","target":5408242616063297496,"profile":16185483997463588654,"path":18081575481898839827,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/getrandom-1bc8302ea0358cac/dep-build-script-build-script-build","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0}

View File

@@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@@ -0,0 +1 @@
{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"rustc-dep-of-std\", \"std\", \"wasm_js\"]","target":11669924403970522481,"profile":1848226155837682299,"path":10274335946090132471,"deps":[[3331586631144870129,"build_script_build",false,3148829659264253692],[6366008408347001515,"libc",false,13414440935387993477],[7843059260364151289,"cfg_if",false,3334986249336963704]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/getrandom-40baf98a89404270/dep-lib-getrandom","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0}

View File

@@ -0,0 +1 @@
{"rustc":15497389221046826682,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[3331586631144870129,"build_script_build",false,1126865918577297666]],"local":[{"RerunIfChanged":{"output":"debug/build/getrandom-aeef0a1ac5c0c405/output","paths":["build.rs"]}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":0,"compile_kind":0}

View File

@@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@@ -0,0 +1 @@
{"rustc":15497389221046826682,"features":"[\"std\"]","declared_features":"[\"compiler_builtins\", \"core\", \"custom\", \"js\", \"js-sys\", \"linux_disable_fallback\", \"rdrand\", \"rustc-dep-of-std\", \"std\", \"test-in-browser\", \"wasm-bindgen\"]","target":16244099637825074703,"profile":3033921117576893,"path":7596050522435702209,"deps":[[6366008408347001515,"libc",false,14214529729649398373],[7843059260364151289,"cfg_if",false,1699892645836063470]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/getrandom-b386e888130291ba/dep-lib-getrandom","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0}

View File

@@ -0,0 +1 @@
{"rustc":15497389221046826682,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[6894592641856567887,"build_script_build",false,1526288002363189774]],"local":[{"RerunIfChanged":{"output":"debug/build/html5ever-2971a9ee54624ba3/output","paths":["src/tree_builder/rules.rs"]}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":0,"compile_kind":0}

View File

@@ -0,0 +1 @@
{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":5408242616063297496,"profile":3033921117576893,"path":14885463844166715674,"deps":[[373107762698212489,"proc_macro2",false,11352822849591009774],[17332570067994900305,"syn",false,17971348096264547987],[17990358020177143287,"quote",false,18137893867194747271]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/html5ever-310ff3bc678af8f1/dep-build-script-build-script-build","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0}

View File

@@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@@ -0,0 +1 @@
{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":4652384769665216062,"profile":8276155916380437441,"path":17660630867118463672,"deps":[[6894592641856567887,"build_script_build",false,11302206074126511585],[7359235151837888654,"markup5ever",false,4865125598853349527],[10952224881603935644,"mac",false,3938639248673190958],[13066042571740262168,"log",false,1661767345955543619]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/html5ever-49e2f1f84d5b7dd4/dep-lib-html5ever","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0}

Some files were not shown because too many files have changed in this diff Show More