StartRNR/cli/Cargo.toml
Kiana Sheibani e88066885e
Fix executable name
Cargo typically forces the executable name to be identical to the name
of the crate, which in this case is "cli". These config lines overwrite
that behavior.
2023-08-26 17:44:24 -04:00

17 lines
254 B
TOML

[package]
name = "cli"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "ggelo"
path = "src/main.rs"
[dependencies]
schema.path = "../schema"
cynic = { version = "3.2", features = ["http-surf"] }
surf = "2"
[build-dependencies]
cynic-codegen = "3.2"