23 lines
613 B
TOML
23 lines
613 B
TOML
[package]
|
|
name = "openvistapro"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[features]
|
|
default = []
|
|
app = ["dep:eframe"]
|
|
hgt = []
|
|
|
|
[dependencies]
|
|
clap = { version = "4.6.1", features = ["derive"] }
|
|
eframe = { version = "0.32.3", optional = true, default-features = false, features = ["default_fonts", "wayland", "wgpu", "x11"] }
|
|
#wgpu = { version = "25.0.2", features = ["metal"] }
|
|
image = { version = "0.25.9", default-features = false, features = ["png"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
toml = "0.8"
|
|
|
|
[[bin]]
|
|
name = "openvistapro_app"
|
|
path = "src/bin/openvistapro_app.rs"
|
|
required-features = ["app"]
|