From 6ff12cb56a5de55ce5fe1a262c7c863bc19334db Mon Sep 17 00:00:00 2001 From: Andrew Golovashevich Date: Thu, 22 Jan 2026 02:44:18 +0300 Subject: [PATCH] Initial commit --- .gitignore | 3 +++ Cargo.toml | 6 ++++++ lab1/Cargo.toml | 6 ++++++ lab1/src/main.rs | 5 +++++ 4 files changed, 20 insertions(+) create mode 100644 .gitignore create mode 100644 Cargo.toml create mode 100644 lab1/Cargo.toml create mode 100644 lab1/src/main.rs diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b5488f8 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +/.idea/ +Cargo.lock +target/ \ No newline at end of file diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..7543ddb --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,6 @@ +[workspace] +members = ["lab1"] + + +[workspace.lints] +rust = { nonstandard_style = "allow", unsafe_op_in_unsafe_fn = "allow" } \ No newline at end of file diff --git a/lab1/Cargo.toml b/lab1/Cargo.toml new file mode 100644 index 0000000..c1726b3 --- /dev/null +++ b/lab1/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "bgtu-ai-1" +edition = "2024" + +[dependencies] +egui = {registry = "crates-io", version = "0.33.3"} \ No newline at end of file diff --git a/lab1/src/main.rs b/lab1/src/main.rs new file mode 100644 index 0000000..cc0f6c9 --- /dev/null +++ b/lab1/src/main.rs @@ -0,0 +1,5 @@ +mod board; + +fn main() { + +} \ No newline at end of file