22 lines
526 B
TOML
22 lines
526 B
TOML
[package]
|
|
name = "bgtu-networks-2"
|
|
version = "0.0.0"
|
|
edition = "2024"
|
|
|
|
[lints]
|
|
rust = { nonstandard_style = "allow", unsafe_op_in_unsafe_fn = "allow" }
|
|
|
|
[dependencies]
|
|
eframe = { version = "0.33.3", default-features = false, features = ["default_fonts", "glow"] }
|
|
egui_extras = { version = "0.33.3" }
|
|
|
|
[dependencies.windows]
|
|
version = ">=0.41.0, <=0.62.2"
|
|
registry = "crates-io"
|
|
features = [
|
|
"Win32_System_IO",
|
|
"Win32_Networking",
|
|
"Win32_Networking_WinSock",
|
|
"Win32_System_Diagnostics",
|
|
"Win32_System_Diagnostics_Debug"
|
|
] |