chore: establish development baseline

This commit is contained in:
2026-06-28 01:27:09 +08:00
commit dd53e3054e
131 changed files with 19327 additions and 0 deletions
@@ -0,0 +1,52 @@
Checking tokio v1.52.3
Checking linux-raw-sys v0.12.1
Checking bitflags v2.13.0
Checking getrandom v0.4.3
Checking fastrand v2.4.1
Checking bat-assetbundle v0.1.0 (/home/wanye/D/workspace/BlueArchiveToolkit/crates/bat-assetbundle)
Checking rustix v1.1.4
Checking tempfile v3.27.0
Checking bat-patch v0.1.0 (/home/wanye/D/workspace/BlueArchiveToolkit/crates/bat-patch)
Checking tokio-stream v0.1.18
Checking bat-core v0.1.0 (/home/wanye/D/workspace/BlueArchiveToolkit/core)
Checking sqlx-core v0.8.6
Checking bat-adapters v0.1.0 (/home/wanye/D/workspace/BlueArchiveToolkit/adapters)
error: octal-looking escape in a literal
--> adapters/src/unity/unity_2021_3.rs:123:39
|
123 | data.extend_from_slice(b"5.x.x\02021.3.56f2\0");
| ^^^^
|
= help: octal escapes are not supported, `\0` is always null
= help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.96.0/index.html#octal_escapes
= note: `-D clippy::octal-escapes` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::octal_escapes)]`
help: if an octal escape is intended, use a hex escape instead
|
123 - data.extend_from_slice(b"5.x.x\02021.3.56f2\0");
123 + data.extend_from_slice(b"5.x.x\x1021.3.56f2\0");
|
help: if a null escape is intended, disambiguate using
|
123 | data.extend_from_slice(b"5.x.x\x002021.3.56f2\0");
| ++
error: octal-looking escape in a literal
--> adapters/src/unity/registry.rs:90:39
|
90 | data.extend_from_slice(b"5.x.x\02021.3.56f2\0");
| ^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.96.0/index.html#octal_escapes
help: if an octal escape is intended, use a hex escape instead
|
90 - data.extend_from_slice(b"5.x.x\02021.3.56f2\0");
90 + data.extend_from_slice(b"5.x.x\x1021.3.56f2\0");
|
help: if a null escape is intended, disambiguate using
|
90 | data.extend_from_slice(b"5.x.x\x002021.3.56f2\0");
| ++
error: could not compile `bat-adapters` (lib test) due to 2 previous errors
warning: build failed, waiting for other jobs to finish...