Eric Kidd
Eric Kidd
There's documentation here on setting the build pack correctly: https://github.com/emk/heroku-buildpack-rust#using-this-buildpack Is this insufficient? I'd be happy to fix the instructions if we can figure out what's going wrong here!
Hmm, that's odd. I'm not sure why you'd be trying to link `diesel_cli` into your executable. The regular `diesel` library is what you should be linking, I would think. I...
Oh, I'm so sorry! I misunderstood. Your error was caused by the `diesel` CLI tools that get built into the image for migrations, not by a copy of the CLI...
Hmm, do I need to take any special steps to update the Elements package, or does it just automatically use `master` from this repo?
Ah, thank you! I'll take a look.
Thank you for letting me know! I went to take a look at the `Cargo.toml` file, and I found this: ```toml [dependencies] error-chain = "0.5.0" hyper = { version =...
@rkruppe I agree completely. If we don't want SSE2 instructions, we should tell LLVM not to generate them. Generating them and then trying to remove them will obviously fail. @alexcrichton...
Great, thank you for the pointer to `target_vendor`. Let me sketch out a design to see if I'm in the right ballpark. Right now, `TargetOptions` has a bunch of fields...
@alexcrichton Thank you for the feedback! For a first pass, I'll try to implement `has_floating_point` in `TargetOptions`. If we want that to automatically disable the corresponding `features`, though, we'd probably...
OK, I've planned out a block of time to work on this week (hopefully by midweek-ish, if all goes well).