Initial commit

This commit is contained in:
2025-07-11 18:08:12 +03:00
commit 74c6a29a13
478 changed files with 23775 additions and 0 deletions

15
nixos/rust-toolchain.toml Normal file
View File

@@ -0,0 +1,15 @@
[toolchain]
# channel = "nightly"
channel = "stable"
# components = [ "rust-src", "rust-analyzer", "rustc-codegen-cranelift", "miri", "llvm-tools", "rust-docs-json" ]
components = [ "rust-src", "rust-analyzer" ]
targets = [
"wasm32-unknown-unknown",
"wasm32-wasip1",
"wasm32-wasip2",
"x86_64-pc-windows-gnu",
"x86_64-unknown-linux-gnu",
"aarch64-unknown-linux-gnu",
"x86_64-unknown-linux-musl"
]
profile = "default"