No description
Find a file Use this template
2024-05-03 23:33:35 +02:00
.github/workflows ci: don't use latest nix 2024-01-20 13:39:53 +05:30
.vscode use direnv 2024-01-20 13:39:43 +05:30
src feat: trim some fat 2024-02-07 19:21:29 +01:00
.envrc Add .envrc (for direnv) 2022-05-04 11:45:44 -04:00
.gitattributes git: Mark flake.lock as generated 2022-05-08 17:04:18 -04:00
.gitignore Add .envrc (for direnv) 2022-05-04 11:45:44 -04:00
Cargo.lock feat: trim some fat 2024-02-07 19:21:29 +01:00
Cargo.toml chore: update template 2024-05-03 19:35:19 +02:00
flake.lock chore: update template 2024-05-03 19:35:19 +02:00
flake.nix fix: use toolchain file 2024-05-03 23:33:35 +02:00
LICENSE Add license; resolves #12 2023-06-26 15:27:21 -04:00
README.md readme: add zulip 2024-01-21 06:50:46 -05:00
rust-toolchain.toml chore: update template 2024-05-03 19:35:19 +02:00
treefmt.nix chore: update template 2024-05-03 19:35:19 +02:00

A template Rust project with fully functional and no-frills Nix support, as well as builtin VSCode configuration to get IDE experience without any manual setup (just install direnv, open in VSCode and accept the suggestions).

Note

If you are looking for the original template based on this blog post's use of crate2nix, browse from this tag. The evolution of this template can be gleaned from releases.

Adapting this template

  • Run nix develop to have a working shell ready before name change.
  • Change name in Cargo.toml.
  • Run cargo generate-lockfile in the nix shell
  • There are two CI workflows, and one of them uses Nix which is slower (unless you configure a cache) than the other that is based on rustup. Pick one or the other depending on your trade-offs.

Development (Flakes)

This repo uses Flakes from the get-go.

# Dev shell
nix develop

# or run via cargo
nix develop -c cargo run

# build
nix build

We also provide a justfile for Makefile'esque commands.

Discussion

See Also