CharlesO
Compiling any app dependent on Rustler is not working on Elixir v12.0 and OTP-24
Anyone having similar issues?
Could not compile :rustler, no "mix.exs", "rebar.config" or "Makefile" (pass :compile as an option to customize compilation, set it to "false" to do nothing)
Unchecked dependencies for environment prod:
* rustler (https://github.com/rusterlium/rustler.git)
could not find an app file at "c:/Projects/bat/_build/prod/lib/rustler/ebin/rustler.app". This may happen if the dependency was not yet compiled or the dependency indeed has no app file (then you can pass app: false as option)
could not compile dependency :xler, "mix compile" failed. You can recompile this dependency with "mix deps.compile xler", update it with "mix deps.update xler" or clean it with "mix deps.clean xler"
Trending in Questions
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
New
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
New
I have what I’ve heard referred to as a “lookup table” in my database. This is a way of assigning codes to common values. One common lo...
New
What approach to take when sending live updates to “random” users Hi! I have a question, I have a little chat app, and when I create a DM...
New
Anyone here using Honeybadger?
My Honeybadger account is being overwhelmed with noise from some bots. Seeing a lot of
Bandit.HTTPError...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
There are three potential reasons for members of this forum to have a look at https://vutuv.de
You are tired or annoyed of LinkedIn.
Yo...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #blog-post
- #elixir-ls
- #ai
- #elixirconf-us
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming











Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
josevalim
Is that v1.12.0 or one of the RCs? We fixed a bug on the RCs but it should be fixed on the final release.
CharlesO
v1.12.0 sir
josevalim
Looking at the Rustler project, it indeed does not have any of mix.exs/rebar.config/makefile at the root, so it makes sense that Elixir does not know how to compile it: GitHub - rusterlium/rustler: Safe Rust bridge for creating Erlang NIF functions · GitHub
Try using a
:sparsecheckout on the relevant subdirectory or use the Hex package. I am not sure how it worked before (it shouldn’t have).dimitarvp
Which version of
rustlerare you using? Mine is0.22.0-rc.0. My Elixir+Rust project compiles fine with Erlang23.3.4and Elixir1.12.0-otp-23, but fails to compile with Erlang24.0and Elixir1.12.0-otp-24. The error is:Seems there’s a hard requirement for a maximum Erlang version. I thought of contributing and maybe even taking over
rustlerin the future (the owners are semi-open to the idea btw) but life and work keep getting in the way.Still, maybe I can muster a small PR that fixes this problem soon-ish.
TL;DR: It’s not Elixir 1.12.0’s fault. It seems to be
rustlerinsisting on a maximum Erlang version.CharlesO
This has been updated on the main branch but not yet published as a release. if you use the git repo as your dep, you won’t get that error
dimitarvp
I am now using Erlang
24.0and Elixir1.12.0-otp-24plus I userustlerdirectly from its GitHub repo and I am still getting the error. Which versions do you have exactly so it’s working for you?CharlesO
I still have problems, not fully resolved. but at least The main branch of rustler is updated for OTP-24
dimitarvp
@josevalim or @AstonJ Can you split this mini-thread off of the main one? We kind of got off-topic.
maciejgryka
I had the same problem - it all seems to work after you use the git checkout option both in your
mix.exsas well asCargo.toml(a short blog post about this here).I was missing the
Cargo.tomlstep for a long time leading me to being stuck with0.22.0-rc.0there and still getting the version error.To summarize, I’ve added this to
mix.exs(thanks for thesparsetip @josevalim):And this to
Cargo.toml:CharlesO
no luck compiling
{:meeseeks, "~> 0.15.1"},even with the specified updates.