A fast-paced 2D MMORPG.
Go to file
Muhammad Nauman Raza 7b8f4767da feat: rename icon folder to logo folder and update rendering of UI
Former-commit-id: 7eb822d0c583a67a90aaed0c7f1a2ecd0a2613fd
2023-11-27 22:48:53 +00:00
.cargo feat: ambition text, fonts, and icon 2023-11-27 21:45:11 +00:00
assets feat: rename icon folder to logo folder and update rendering of UI 2023-11-27 22:48:53 +00:00
src feat: rename icon folder to logo folder and update rendering of UI 2023-11-27 22:48:53 +00:00
.envrc chore: initialise repository and cargo project 2023-11-26 21:32:11 +00:00
.gitignore chore: initialise repository and cargo project 2023-11-26 21:32:11 +00:00
Cargo.lock feat: intialise fonts 2023-11-27 10:45:07 +00:00
Cargo.toml feat: ambition text, fonts, and icon 2023-11-27 21:45:11 +00:00
flake.lock chore: flake.lock 2023-11-27 09:09:35 +00:00
flake.nix hotfix: LD_LIBRARY_PATH missing some packages 2023-11-27 21:44:35 +00:00
README.md chore: initialise repository and cargo project 2023-11-26 21:32:11 +00:00

❄️ nix-template-rust-nightly 🦀

NixOS NixOS License

Minimal Rust development template for Nix

About

This is a minimal template for Rust development on the nightly channel.

Initialization

See the parent README for further instructions, but you can initialize this template with the following command in your current directory.

nix flake init -t github:MordragT/nix-templates#rust-nightly

Usage

  • nix develop: opens up a bash shell with the bare minimum Rust toolset (cargo & rustc) by default
  • nix build : builds the Rust project. Outputs the binary to ./result/bin/<name>
  • nix run: runs the Rust program.

Reference

  1. wiki/Flakes
  2. Fenix - used for managing Rust toolchains (read the makeRustPlatform example)
  3. rust-section of language frameworks - optional (use it for extending the template)