From 4ef7f5adefacf04bdace47ca41bfa2c5b196b3fc Mon Sep 17 00:00:00 2001 From: Kiana Sheibani Date: Wed, 14 Aug 2024 20:44:53 -0400 Subject: [PATCH] style: rearrange dependencies --- Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 678e541..5237bb9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,13 +10,13 @@ name = "startrnr" path = "src/main.rs" [dependencies] +# GraphQL schema +schema.path = "schema" + # CLI clap = { version = "4.4", features = ["derive"] } chrono = "0.4" -# GraphQL schema -schema.path = "schema" - # API access cynic = { version = "3.2", features = ["http-reqwest-blocking"] } reqwest = "0.11"