Results 154 comments of 阿豪

Hi @taiki-e I'd really appreciate it if this PR could be moved forward and merged. I'm currently working on some Rust programs that run on OpenWRT, where storage space is...

Thank you, I hope it will work, because I can't reproduce it exactly, and I just need to re-execute it. I will test it for a few days to see...

This installation method can mainly install some non-rust programs, but they have similar release names rules as rust programs. ``` cargo binstall https://github.com/quickjs-ng/quickjs/releases ```

There are some tools that can install binaries directly from the repo url https://github.com/houseabsolute/ubi https://github.com/zyedidia/eget https://github.com/easy-install/easy-install

Doesn't seem to work on Android termux? ``` cargo binstall --git https://github.com/ahaoboy/neofetch neofetch ``` ``` DEBUG using (/data/data/com.termux/files/home/.cargo) as cargo home DEBUG Using install path: /data/data/com.termux/files/home/.cargo/bin INFO resolve: Resolving package:...

Termux can use git to pull the binstall source code and compile it, but it will trigger OOM ``` git clone https://github.com/cargo-bins/cargo-binstall.git cd crates/bin/ cargo install --path . ``` ```...

``` cargo binstall -vV cargo-binstall: 1.12.6 build-date: 2025-05-31 build-target: aarch64-unknown-linux-musl build-features: cross_lang_fat_lto,default,fancy_no_backtrace,git,http3,log_release_max_level_debug,rustls,static,trust_dns,zlib_rs,zstd_thin build-commit-hash: e8c9cc3599f6c4063d143083205f98ca25d91677 build-commit-date: 2025-05-31 rustc-version: 1.87.0 rustc-commit-hash: 17067e9ac6d7ecb70e50f92c1944e545188d2359 rustc-llvm-version: 20.1 ```

> Hmmm maybe it's an issue with hickory-dns? > > Can you try building cargo-binstall without feature trust-dns and see if using libc builtin dns resolver can work? After deleting...

I installed hickory from source, but resolve works ``` resolve www.github.com. resolve www.githubusercontent.com. ``` I suspect it may be related to the network proxy I use... but I'm not sure,...

> FYI, I have created [taiki-e/install-action#1135](https://github.com/taiki-e/install-action/pull/1135) and [taiki-e/install-action#1137](https://github.com/taiki-e/install-action/pull/1137) to provide CI support for installing ubi (and mise, which has a ubi backend) to install from Github Releases. Manifest-based solutions are...