40 lines
727 B
TOML
40 lines
727 B
TOML
[package]
|
|
name = "prometeu"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
|
|
[[bin]]
|
|
name = "prometeu"
|
|
path = "src/main.rs"
|
|
|
|
[[bin]]
|
|
name = "prometeu-runtime"
|
|
path = "../prometeu-runtime/src/main.rs"
|
|
|
|
# Future binaries (commented)
|
|
# [[bin]]
|
|
# name = "prometeuc"
|
|
# path = "../prometeuc/src/main.rs"
|
|
#
|
|
# [[bin]]
|
|
# name = "prometeup"
|
|
# path = "../prometeup/src/main.rs"
|
|
|
|
[package.metadata.dist]
|
|
dist = true
|
|
include = [
|
|
"../../VERSION.txt",
|
|
"../../dist-staging/devtools-protocol"
|
|
]
|
|
|
|
[dependencies]
|
|
clap = { version = "4.5", features = ["derive"] }
|
|
prometeu-core = { path = "../prometeu-core" }
|
|
winit = "0.30.12"
|
|
pixels = "0.15.0"
|
|
cpal = "0.15.3"
|
|
ringbuf = "0.4.7"
|
|
serde_json = "1.0"
|