Co-authored-by: Nilton Constantino <nilton.constantino@visma.com> Reviewed-on: #5
33 lines
679 B
TOML
33 lines
679 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 = "src/bin/prometeu-runtime.rs"
|
|
|
|
[[bin]]
|
|
name = "prometeuc"
|
|
path = "src/bin/prometeuc.rs"
|
|
|
|
[package.metadata.dist]
|
|
dist = true
|
|
include = [
|
|
"../../VERSION.txt",
|
|
"../../dist-staging/devtools/debugger-protocol",
|
|
"../../dist-staging/devtools/typescript-sdk"
|
|
]
|
|
|
|
[dependencies]
|
|
clap = { version = "4.5", features = ["derive"] }
|
|
prometeu-runtime-desktop = { path = "../prometeu-runtime-desktop" }
|
|
prometeu-compiler = { path = "../prometeu-compiler" }
|
|
anyhow = "1.0.100"
|