diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-08-18 09:01:02 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-08-18 09:01:02 +0800 |
| commit | 9591f192004547a4532e000c0f4534eb48bcb1bb (patch) | |
| tree | b2ba31897cac68605ab8e7a99c5dea473d46003e /mingling_ci/Cargo.lock | |
| parent | b2e2ebaf8b75422fc57ca46a46bd67728df73a3c (diff) | |
feat(ci-new): implement build-all task
Run cargo build for all package manifests in parallel and
report failures.
Diffstat (limited to 'mingling_ci/Cargo.lock')
| -rw-r--r-- | mingling_ci/Cargo.lock | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/mingling_ci/Cargo.lock b/mingling_ci/Cargo.lock index 5316e7a..8187736 100644 --- a/mingling_ci/Cargo.lock +++ b/mingling_ci/Cargo.lock @@ -24,6 +24,12 @@ dependencies = [ ] [[package]] +name = "bytes" +version = "1.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04" + +[[package]] name = "cfg-if" version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -93,6 +99,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" [[package]] +name = "errno" +version = "0.3.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" +dependencies = [ + "libc", + "windows-sys", +] + +[[package]] name = "getrandom" version = "0.2.17" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -282,6 +298,17 @@ dependencies = [ ] [[package]] +name = "mio" +version = "1.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "30d65c71f1ce40ab09135ce117d742b9f8a19ff91a41a8b57ed50bc2de59c427" +dependencies = [ + "libc", + "wasi", + "windows-sys", +] + +[[package]] name = "pin-project-lite" version = "0.2.17" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -381,6 +408,16 @@ dependencies = [ ] [[package]] +name = "signal-hook-registry" +version = "1.4.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b" +dependencies = [ + "errno", + "libc", +] + +[[package]] name = "syn" version = "2.0.119" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -439,8 +476,13 @@ version = "1.53.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "202caea871b69668250d242070849eb495be178ed697a3e98aebce5bc81a0bed" dependencies = [ + "bytes", + "libc", + "mio", "pin-project-lite", + "signal-hook-registry", "tokio-macros", + "windows-sys", ] [[package]] |
