29 lines
1005 B
TOML
29 lines
1005 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" }
|
|
bincode = { version = "2.0.1", features = ["serde"] }
|
|
shared = { path = "../shared" }
|
|
tokio = { version = "1.47.1", features = ["full", "rt-multi-thread"] }
|
|
tokio-tungstenite = "0.27.0"
|
|
thiserror = "2.0.16"
|
|
futures-util = "0.3.31"
|
|
uuid = { version = "1.18.1", features = ["v4"] }
|
|
crossbeam = "0.8.4"
|
|
once_cell = "1.21.3"
|