From 9243aa4399e0daceaff3c260d59365d5bb0c841f Mon Sep 17 00:00:00 2001 From: Andrew Golovashevich Date: Sun, 8 Feb 2026 11:34:24 +0300 Subject: [PATCH] [lab4] Initial commit --- Cargo.toml | 3 ++- lab4/Cargo.toml | 15 +++++++++++++++ lab4/src/main.rs | 0 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 lab4/Cargo.toml create mode 100644 lab4/src/main.rs diff --git a/Cargo.toml b/Cargo.toml index 65afbe9..9b93f6d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,8 @@ members = [ "lab1", "lab2", - "lab3" + "lab3", + "lab4", ] diff --git a/lab4/Cargo.toml b/lab4/Cargo.toml new file mode 100644 index 0000000..083f8a0 --- /dev/null +++ b/lab4/Cargo.toml @@ -0,0 +1,15 @@ +[package] +name = "bgtu-ai-4" +edition = "2024" + +[lints] +workspace = true + +[dependencies] +rand = "0.9.2" +eframe = { version = "0.33.3", default-features = false, features = ["default_fonts", "glow"] } +egui_extras = { version = "0.33.3" } + +[profile.dev.package.eframe] +opt-level = 2 +debug = true \ No newline at end of file diff --git a/lab4/src/main.rs b/lab4/src/main.rs new file mode 100644 index 0000000..e69de29