Rust Support
It would be great to support the Rust programming language and have a template for quickly building cloud ready applications in Rust.
We have added support for Rust in our latest round of template updates! You'll see an entry for Rust CLI under the Backend category.
-
Benjamin Crouch commented
+1
-
Quentin commented
This is now possible with the new Nix support. You can use something like this in your `dev.nix`:
```
{pkgs}: let
rpkgs = pkgs.extend (import (builtins.fetchTarball "https://github.com/oxalica/rust-overlay/archive/master.tar.gz"));
in {
packages = with rpkgs; [
(rust-bin.fromRustupToolchainFile ../rust-toolchain.toml)
stdenv.cc
];
}
```(and if you don't care about which toolchain version you get, you could just install pkgs.cargo and pkgs.rustc directly.)
-
Anonymous commented
🦀