diff --git a/Cargo.toml b/Cargo.toml index 46651d2..65afbe9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,8 @@ [workspace] members = [ "lab1", - "lab2" + "lab2", + "lab3" ] diff --git a/lab3/Cargo.toml b/lab3/Cargo.toml new file mode 100644 index 0000000..35b983c --- /dev/null +++ b/lab3/Cargo.toml @@ -0,0 +1,15 @@ +[package] +name = "bgtu-ai-3" +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