diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-05-04 14:53:55 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-05-04 14:53:55 +0800 |
| commit | 027987c8bc497f93e7f1e3bc4b880f53b229fd04 (patch) | |
| tree | d2fc96a4b6f119c3da2deaaaa6d6a776119d80e7 | |
| parent | 072175e5b1754ce8a62925aeff4676cbf4693377 (diff) | |
| -rw-r--r-- | Cargo.lock | 21 | ||||
| -rw-r--r-- | src/data/compile_info.rs | 16 |
2 files changed, 8 insertions, 29 deletions
@@ -308,20 +308,6 @@ dependencies = [ ] [[package]] -name = "chunking_system" -version = "0.1.0" -dependencies = [ - "asset_system", - "framework", - "just_fmt", - "just_template", - "serde", - "size", - "thiserror", - "tokio", -] - -[[package]] name = "cipher" version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -1162,7 +1148,6 @@ version = "0.0.0" dependencies = [ "asset_system", "chrono", - "chunking_system", "config_system", "constants", "data_struct", @@ -2111,12 +2096,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d" [[package]] -name = "size" -version = "0.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b6709c7b6754dca1311b3c73e79fcce40dd414c782c66d88e8823030093b02b" - -[[package]] name = "slab" version = "0.4.11" source = "registry+https://github.com/rust-lang/crates.io-index" diff --git a/src/data/compile_info.rs b/src/data/compile_info.rs index de5b86d..d06f9b1 100644 --- a/src/data/compile_info.rs +++ b/src/data/compile_info.rs @@ -13,13 +13,13 @@ pub struct CompileInfo { impl Default for CompileInfo { fn default() -> Self { Self { - date: "2026-03-26 16:24:44".to_string(), - target: "x86_64-unknown-linux-gnu".to_string(), - platform: "Linux".to_string(), - toolchain: "rustc 1.91.1 (ed61e7d7e 2025-11-07) (stable)".to_string(), - cli_version: "0.1.1".to_string(), - build_branch: "dev".to_string(), - build_commit: "96e19f1b28e9ad3a58864b41a9d6e25ed255dac6".to_string(), + date: "<<<date>>>".to_string(), + target: "<<<target>>>".to_string(), + platform: "<<<platform>>>".to_string(), + toolchain: "<<<toolchain>>>".to_string(), + cli_version: "<<<version>>>".to_string(), + build_branch: "<<<branch>>>".to_string(), + build_commit: "<<<commit>>>".to_string(), } } -}
\ No newline at end of file +} |
