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
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
Hello,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
Hi everyone,
I am toying with the idea of building a “match maker” for giving personal help to people that wants to start coding.
I sta...
New
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
I recently noticed that Elixir’s Logger defaults its primary log level to :debug when no :logger, :level application configuration is pre...
New
I’m new to elixir and just tried to install the elixirLS extension for VScode(ium) and it is throwing some errors that I would like help ...
New
Other Trending Topics
Edit: 2026 May 15 - This post is archived.
Mob is alive!!
Main docs: mob v0.7.11 — Documentation
A bit of explanation for the slightly c...
New
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #ai
- #elixirconf-us
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #elixirconf-eu
- #metaprogramming
- #hex










Showing Posts 18 to 9- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
myobie
Ah OK, that makes perfect sense and I didn’t realize. Thanks for letting me know
dimitarvp
The reason the approach above has been recommended is just one:
rustlermaintainers seem to be active again and we can expect a stable next release soon.If not for that factor then I’d go with what you recommended.
myobie
(Gah, I’m sorry to double post, I messed up making an edit.)
You can override the version rustler is looking for with an ENV variable:
This is the easiest way to make progress (I’ve found) without having to re-target any deps or anything.
Am I missing some downsides to doing this? I think rustler works just fine targeting the older nif version in my experience.
dimitarvp
I’d try both things:
mix.exs:Cargo.tomlas @maciejgryka showed:CharlesO
dimitarvp
Show us your
mix.exs?CharlesO
Still have the same issues after this update. Previously working code will not compile anymore.
dimitarvp
There’s a
0.22.0-rc.1release that got out like 45 minutes ago.@maciejgryka What you have shown have worked for me for Elixir
1.12.0-otp-24and Erlang24.0.1. Thanks!(I still used
rustlerfrom themasterbranch, though.)CharlesO
no luck compiling
{:meeseeks, "~> 0.15.1"},even with the specified updates.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: