watcher/native_client/Cargo.toml
Victor Vobis d9339d5c92 bless
2025-09-11 22:42:44 +02:00

20 lines
684 B
TOML

[package]
name = "native_client"
version = "0.1.0"
edition = "2024"
build = "build.rs"
[dependencies]
egui = "0.32.2"
eframe = { version = "0.32.2", default-features = false, features = [
"default_fonts", # Embed the default egui fonts.
"glow", # Use the glow rendering backend. Alternative: "wgpu".
"persistence", # Enable restoring app state when restarting the app.
"wayland", # To support Linux (and CI)
"x11", # To support older Linux distributions (restores one of the default features)
] }
serde = { version = "1.0.219", features = ["derive"] }
watchlet = { path = "../watchlet" }
hex = "0.4.3"
vlogger = { path = "../vlogger" }