nixbot

builds
unpackPhase
1unpacking source archive /nix/store/vcv9h8jn6f00daw8s3094d2n4vkj7sai-source2source root is source
patchPhase
3Executing configureCargoCommonVars4decompressing cargo artifacts from /nix/store/jbb7ak5zynlwa79wvlhhb7c803wr6av3-tribuchet-deps-0.1.0/target.tar.zst to target
configurePhase
5will append /nix/var/nix/builds/nix-17759-3272071845/source/.cargo-home/config.toml with contents of /nix/store/82y15ssr63razm0xzh8k1dcixyzdn224-vendor-cargo-deps/config.toml6default configurePhase, nothing to do
buildPhase
7+++ command cargo --version8cargo 1.97.0 (c980f4866 2026-06-30)9+++ command cargo build --release --message-format json-render-diagnostics --locked10 Compiling sandbox-proto v0.1.0 (/nix/var/nix/builds/nix-17759-3272071845/source/crates/sandbox-proto)11 Compiling tribuchet v0.1.0 (/nix/var/nix/builds/nix-17759-3272071845/source/crates/tribuchet)12 Compiling netbench v0.1.0 (/nix/var/nix/builds/nix-17759-3272071845/source/crates/netbench)13error[E0308]: arguments to this function are incorrect14 --> crates/tribuchet/src/chunker.rs:187:515 |16187 | FastCDC::new(data, CDC_MIN, CDC_AVG, CDC_MAX).map(|c| &data[c.offset..c.offset + c.length])17 | ^^^^^^^^^^^^ ------- ------- ------- expected `usize`, found `u32`18 | | |19 | | expected `usize`, found `u32`20 | expected `usize`, found `u32`21 |22note: associated function defined here23 --> /nix/store/82y15ssr63razm0xzh8k1dcixyzdn224-vendor-cargo-deps/c19b7c6f923b580ac259164a89f2577984ad5ab09ee9d583b888f934adbbe8d0/fastcdc-4.0.1/src/v2020/mod.rs:468:1224 |25468 | pub fn new(source: &'a [u8], min_size: usize, avg_size: usize, max_size: usize) -> Self {26 | ^^^27help: you can convert a `u32` to a `usize` and panic if the converted value doesn't fit28 |29187 | FastCDC::new(data, CDC_MIN.try_into().unwrap(), CDC_AVG, CDC_MAX).map(|c| &data[c.offset..c.offset + c.length])30 | ++++++++++++++++++++31help: you can convert a `u32` to a `usize` and panic if the converted value doesn't fit32 |33187 | FastCDC::new(data, CDC_MIN, CDC_AVG.try_into().unwrap(), CDC_MAX).map(|c| &data[c.offset..c.offset + c.length])34 | ++++++++++++++++++++35help: you can convert a `u32` to a `usize` and panic if the converted value doesn't fit36 |37187 | FastCDC::new(data, CDC_MIN, CDC_AVG, CDC_MAX.try_into().unwrap()).map(|c| &data[c.offset..c.offset + c.length])38 | ++++++++++++++++++++3940error[E0308]: arguments to this function are incorrect41 --> crates/tribuchet/src/chunker.rs:181:542 |43181 | FastCDC::new(data, CDC_MIN, CDC_AVG, CDC_MAX)44 | ^^^^^^^^^^^^ ------- ------- ------- expected `usize`, found `u32`45 | | |46 | | expected `usize`, found `u32`47 | expected `usize`, found `u32`48 |49note: associated function defined here50 --> /nix/store/82y15ssr63razm0xzh8k1dcixyzdn224-vendor-cargo-deps/c19b7c6f923b580ac259164a89f2577984ad5ab09ee9d583b888f934adbbe8d0/fastcdc-4.0.1/src/v2020/mod.rs:468:1251 |52468 | pub fn new(source: &'a [u8], min_size: usize, avg_size: usize, max_size: usize) -> Self {53 | ^^^54help: you can convert a `u32` to a `usize` and panic if the converted value doesn't fit55 |56181 | FastCDC::new(data, CDC_MIN.try_into().unwrap(), CDC_AVG, CDC_MAX)57 | ++++++++++++++++++++58help: you can convert a `u32` to a `usize` and panic if the converted value doesn't fit59 |60181 | FastCDC::new(data, CDC_MIN, CDC_AVG.try_into().unwrap(), CDC_MAX)61 | ++++++++++++++++++++62help: you can convert a `u32` to a `usize` and panic if the converted value doesn't fit63 |64181 | FastCDC::new(data, CDC_MIN, CDC_AVG, CDC_MAX.try_into().unwrap())65 | ++++++++++++++++++++6667For more information about this error, try `rustc --explain E0308`.68error: could not compile `tribuchet` (bin "tribuchet") due to 2 previous errors