remove rust/cargo from compilation

it has become clear that incorperating rust in this project was a
mistake, since I don't understand it well enough for it to be useful,
and at this rate it'd be faster to use GLFW in C than in rust.
This commit is contained in:
Quinn
2025-04-12 20:52:35 +02:00
committed by Quinn
parent 87117931f7
commit 401854002f
5 changed files with 8 additions and 100 deletions

View File

@@ -1,9 +1,10 @@
#include "error.h"
extern void test(void);
int main(int argc, char** argv) {
(void)argc, (void)argv;
test();
debug("owo");
debug("%s", "owo");
info("%s", "owo");
warn("%s", "owo");
error("%s", "owo");
fatal("%s", "owo");
}