20 lines
684 B
TOML
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" }
|