pandaman
pandaman
Another reproduction: using `aws-config` causes stack overflow: https://github.com/pandaman64/crate2nix-aws-infinite-recursion/blob/main/Cargo.toml
I'm using `nix (Nix) 2.4pre20211006_53e4794`. Let me try newer version later.
I updated `nix` command to `nix (Nix) 2.5pre20211007_844dd90`, but it still fails. I have not updated the system nix yet (user-space command only), so this might explain the failure.
@andir I was unable to successfully run Nix against my repository for the following versions: - `nix (Nix) 2.5pre20211007_844dd90` from `nixos-unstable`'s `nixUnstable` - `nix (Nix) 2.4` from `nixos-unstable`'s `nix` So...
Same here. All of `v0.7.0`. `v0.8.0`. `master` fails to build because of missing `cargo_web`. In my case, `cargo_web` is required by `stdweb`. ``` { name = "stdweb"; packageId = "stdweb...
complete reproducer: https://github.com/pandaman64/crate2nix-cargoweb
It seems that `time` crate detects [cargo-web](https://github.com/koute/cargo-web) by checking `cfg(cargo_web)`: https://github.com/time-rs/time/blob/main/Cargo.toml#L46 Probably generating `cargo_web = false` by default is a good idea as `time` is widely used.
#141 is a dupe
You can modify `defaultTarget` in `Cargo.nix`. I'm using this patch: https://github.com/pandaman64/oekaki/blob/master/backend/Cargo.nix.patch `feature = ""` is a workarond for #136. This might disable some SIMD optimizations.
It looks like the latest version fixed this issue. Thanks!