Kiana Sheibani
badcec976a
Reqwest seems to be more popular, and a non-async API would simplify the code without losing too much.
25 lines
373 B
TOML
25 lines
373 B
TOML
[package]
|
|
name = "cli"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "ggelo"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
# 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"
|