23 lines
847 B
TOML
23 lines
847 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" }
|
|
tungstenite = { version = "0.27.0", features = ["rustls-tls-webpki-roots"] }
|
|
bincode = { version = "2.0.1", features = ["serde"] }
|
|
shared = { path = "../shared" }
|