21 lines
388 B
TOML
21 lines
388 B
TOML
[package]
|
|
name = "deimos"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "dm"
|
|
path = "src/bin/dvm/main.rs"
|
|
|
|
[[bin]]
|
|
name = "dmc"
|
|
path = "src/bin/dmc/main.rs"
|
|
|
|
[dependencies]
|
|
pest = { version = "2.8.0" }
|
|
clap = { version = "4.5.23", features = ["derive"] }
|
|
pest_derive = { version = "2.8.0", features = ["grammar-extras"] }
|
|
codespan-reporting = "0.12.0"
|
|
log = "0.4.27"
|
|
indoc = "2.0.6"
|