27 lines
654 B
TOML
27 lines
654 B
TOML
[package]
|
|
name = "voice-ime"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
windows = { version = "0.61", features = [
|
|
"Win32_UI_WindowsAndMessaging",
|
|
"Win32_UI_Input_KeyboardAndMouse",
|
|
"Win32_UI_Shell",
|
|
"Win32_Graphics_Gdi",
|
|
"Win32_System_LibraryLoader",
|
|
"Win32_Foundation",
|
|
"Win32_UI_Controls",
|
|
] }
|
|
cpal = "0.15"
|
|
tokio = { version = "1", features = ["rt-multi-thread", "sync", "macros", "time"] }
|
|
tokio-tungstenite = { version = "0.26", features = ["native-tls"] }
|
|
futures-util = "0.3"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
base64 = "0.22"
|
|
rodio = "0.20"
|
|
|
|
[build-dependencies]
|
|
winres = "0.1"
|