workspace/Cargo.toml

40 lines
713 B
TOML
Raw Normal View History

2024-10-07 17:48:28 +00:00
[package]
2024-10-08 21:14:45 +00:00
name = "m42_workspace"
2024-10-07 17:48:28 +00:00
version = "0.1.0"
edition = "2021"
2024-10-08 21:14:45 +00:00
default-run = "m42_workspace"
[[bin]]
name = "m42_workspace"
path = "src/main.rs"
[[bin]]
name = "m42_log_history"
path = "src/bin/log_history.rs"
2024-10-07 17:48:28 +00:00
[dependencies]
tray-icon = "0.19.0"
image = "0.25"
2024-10-07 19:00:53 +00:00
anyhow = "1.0.89"
2024-10-08 15:04:06 +00:00
tokio = { version = "1.40.0", features = ["full"] }
2024-10-08 20:20:43 +00:00
2024-10-08 15:04:06 +00:00
rsn = "0.1.0"
2024-10-08 20:20:43 +00:00
serde = { version = "1.0.210", features = ["derive"] }
2024-10-08 15:04:06 +00:00
known-folders = "1.2.0"
2024-10-08 20:20:43 +00:00
indexmap = { version = "2.6.0", features = ["serde"] }
notan = { version = "0.12.1", features = [
"audio",
"clipboard",
"drop_files",
"egui",
"extra",
"links",
"notan_extra",
"text",
] }
tao = "0.30.3"
2024-10-08 21:14:45 +00:00
[build-dependencies]
winresource = "0.1.17"