Open Tahinli opened 2 months ago
The --locked
option also throws warnings about crates being yanked. So either way using cargo install
has some issues.
> cargo install atac --locked
Updating crates.io index
Installing atac v0.18.0
Updating crates.io index
warning: package `bytemuck v1.16.1` in Cargo.lock is yanked in registry `crates-io`, consider running without --locked
warning: package `bytes v1.6.0` in Cargo.lock is yanked in registry `crates-io`, consider running without --locked
The
--locked
option also throws warnings about crates being yanked. So either way usingcargo install
has some issues.
Yep it throws warnings but at least compile and run. Since we can't follow every update of every dependency, locked
will provide us consistency.
i just ran into this 'boa_engine' compilation fail today when trying to 'cargo install atac'.
installed rustc version is 1.79.0, as requested in the README.
edit: 'rustup update'd to rustc 1.81.0, 'boa_engine' still won't compile.
edit2: cloned the ATAC repo and both 'cargo run' and 'cargo build --release' result in a successful compilation. this looks like some kind of crates.io packaging problem?
it seems the boa
project tracked the issue here https://github.com/boa-dev/boa/issues/3982, but somehow marked it as completed without ever referencing any commits that might have solved it.
Hi, I saw this project couple minutes ago in Orhun's FrOSCon 2024 presentation and wanted to install immediately. Unfortunately I got error when I try
cargo install atac
This is not happening withcargo install atac --locked
little PR that may help people: https://github.com/Julien-cpsn/ATAC/pull/112#issue-2512135012