26 lines
672 B
TOML
26 lines
672 B
TOML
[package]
|
|
name = "prometeu-host-desktop-winit"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
|
|
[[bin]]
|
|
name = "prometeu-host-desktop-winit"
|
|
path = "src/main.rs"
|
|
|
|
[package.metadata.dist]
|
|
dist = true
|
|
include = ["../../VERSION.txt"]
|
|
|
|
[dependencies]
|
|
prometeu-firmware = { path = "../../console/prometeu-firmware" }
|
|
prometeu-system = { path = "../../console/prometeu-system" }
|
|
prometeu-drivers = { path = "../../console/prometeu-drivers" }
|
|
prometeu-hal = { path= "../../console/prometeu-hal" }
|
|
winit = "0.30.12"
|
|
pixels = "0.15.0"
|
|
cpal = "0.15.3"
|
|
ringbuf = "0.4.7"
|
|
serde_json = "1.0.149"
|
|
clap = { version = "4.5", features = ["derive"] } |