30 lines
736 B
TOML
30 lines
736 B
TOML
[package]
|
|
name = "somewhatusefultool"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
eframe = "0.31.1"
|
|
egui = "0.31.1"
|
|
editor = { path = "./editor" }
|
|
egui_extras = { version = "0.31.1", features = [
|
|
"chrono",
|
|
"datepicker",
|
|
"file",
|
|
"image",
|
|
] }
|
|
egui_file = "0.22.1"
|
|
image = { version = "0.25.6", features = ["jpeg", "png"] }
|
|
serde = { version = "1.0.219", features = ["derive"] }
|
|
serde_json = "1.0.140"
|
|
chrono = { version = "0.4.41", features = ["serde"] }
|
|
thiserror = "2.0.12"
|
|
egui_commonmark = { version = "0.20.0", features = ["embedded_image"] }
|
|
walkdir = "2.5.0"
|
|
uuid = { version = "1.17.0", features = ["v4"] }
|
|
|
|
|
|
[target.x86_64-pc-windows-gnu]
|
|
linker = "x86_64-w64-mingw32-gcc"
|
|
ar = "x86_64-w64-mingw32-gcc-ar"
|