Files
sablono/rust-tmpl/manifest.toml
bluepython508 c35a075586 A rust template
2023-12-12 21:51:35 +00:00

48 lines
641 B
TOML

[parameters.name]
description = "The name of the project"
default = "{{ name }}"
[[commands]]
command = "git"
args = ["init"]
[[commands]]
command = "git"
args = ["add", "."]
[[commands]]
command = "nix"
args = ["flake", "update"]
[[commands]]
command = "direnv"
args = ["allow"]
[[commands]]
command = "nix"
args = ["develop", "--command", "cargo", "update"]
[[commands]]
command = "git"
args = ["commit", "-am", "Initial Commit"]
[files."Cargo.toml"]
[files.".envrc"]
[files."flake.lock"]
[files."manifest.toml"]
[files."toolchain.toml"]
[files."Cargo.lock"]
[files.".gitignore"]
[files."flake.nix"]
[files."src/main.rs"]