mirror of
https://github.com/ApfelTeeSaft/Tetanus.git
synced 2026-08-26 19:33:41 +00:00
23 lines
470 B
TOML
23 lines
470 B
TOML
[package]
|
|
name = "tetanus"
|
|
version = "1.0.0"
|
|
edition = "2026"
|
|
|
|
[lib]
|
|
name = "tetanus"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
iced-x86 = { version = "1.21.0", default-features = false, features = ["decoder", "encoder"] }
|
|
windows-sys = { version = "0.52.0", features = [
|
|
"Win32_Foundation",
|
|
"Win32_System_Diagnostics_Debug",
|
|
"Win32_System_LibraryLoader",
|
|
"Win32_System_Memory",
|
|
"Win32_System_SystemServices",
|
|
"Win32_System_Threading"
|
|
] }
|
|
|
|
[features]
|
|
default = []
|