Initial commit
This commit is contained in:
commit
6ff12cb56a
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
/.idea/
|
||||
Cargo.lock
|
||||
target/
|
||||
6
Cargo.toml
Normal file
6
Cargo.toml
Normal 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
6
lab1/Cargo.toml
Normal 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
5
lab1/src/main.rs
Normal file
@ -0,0 +1,5 @@
|
||||
mod board;
|
||||
|
||||
fn main() {
|
||||
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user