Initial commit

This commit is contained in:
Andrew Golovashevich 2026-01-22 02:44:18 +03:00
commit 6ff12cb56a
4 changed files with 20 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
/.idea/
Cargo.lock
target/

6
Cargo.toml Normal file
View File

@ -0,0 +1,6 @@
[workspace]
members = ["lab1"]
[workspace.lints]
rust = { nonstandard_style = "allow", unsafe_op_in_unsafe_fn = "allow" }

6
lab1/Cargo.toml Normal file
View File

@ -0,0 +1,6 @@
[package]
name = "bgtu-ai-1"
edition = "2024"
[dependencies]
egui = {registry = "crates-io", version = "0.33.3"}

5
lab1/src/main.rs Normal file
View File

@ -0,0 +1,5 @@
mod board;
fn main() {
}