setup (draw a circle /m)

This commit is contained in:
Schrottkatze 2025-05-14 13:28:18 +02:00
commit 08069c9224
Signed by: schrottkatze
SSH key fingerprint: SHA256:FPOYVeBy3QP20FEM42uWF1Wa/Qhlk+L3S2+Wuau/Auo
9 changed files with 5452 additions and 0 deletions

22
.cargo/config.toml Normal file
View file

@ -0,0 +1,22 @@
# for Linux
[target.x86_64-unknown-linux-gnu]
linker = "clang"
rustflags = [
"-C", "link-arg=-fuse-ld=lld",
# (Nightly) Make the current crate share its generic instantiations
"-Zshare-generics=y",
]
# for Windows
[target.x86_64-pc-windows-msvc]
linker = "rust-lld.exe"
[unstable]
codegen-backend = true
[profile.dev]
codegen-backend = "cranelift"
[profile.dev.package."*"]
codegen-backend = "llvm"