diff --git a/Cargo.toml b/Cargo.toml index 9b93f6d..22fe193 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,6 +4,7 @@ members = [ "lab2", "lab3", "lab4", + "lab5", ] diff --git a/lab5/Cargo.toml b/lab5/Cargo.toml new file mode 100644 index 0000000..86dbc78 --- /dev/null +++ b/lab5/Cargo.toml @@ -0,0 +1,15 @@ +[package] +name = "bgtu-ai-5" +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/lab5/src/main.rs b/lab5/src/main.rs new file mode 100644 index 0000000..e71fdf5 --- /dev/null +++ b/lab5/src/main.rs @@ -0,0 +1 @@ +fn main() {} \ No newline at end of file