StartRNR/Cargo.toml

30 lines
442 B
TOML
Raw Normal View History

2023-08-26 03:37:24 -04:00
[workspace]
[package]
name = "ggelo"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "ggelo"
path = "src/main.rs"
[dependencies]
2023-09-26 22:36:03 -04:00
# CLI
clap = { version = "4.4", features = ["derive"] }
# GraphQL schema
schema.path = "schema"
# API access
cynic = { version = "3.2", features = ["http-reqwest-blocking"] }
reqwest = "0.11"
serde = "1.0"
# Local file manipulation
dirs = "5.0"
sqlite = "0.31"
[build-dependencies]
cynic-codegen = "3.2"