Kiana Sheibani
e88066885e
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.
17 lines
254 B
TOML
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"
|