From 6f4c408a2691cb981ae8eee04ea35a18b8072b0d Mon Sep 17 00:00:00 2001 From: Joey Hines Date: Sun, 20 Apr 2025 14:49:49 -0600 Subject: [PATCH] Bump version and make tokio a dev dependency --- Cargo.lock | 2 +- Cargo.toml | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 373b091..1f637bb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -101,7 +101,7 @@ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" [[package]] name = "cta-api" -version = "0.1.0" +version = "0.2.0" dependencies = [ "reqwest", "serde", diff --git a/Cargo.toml b/Cargo.toml index 2b46328..2e7249d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cta-api" -version = "0.1.0" +version = "0.2.0" edition = "2024" description = "CTA API Client" authors = ["Joey Hines joey@ahines.net"] @@ -10,5 +10,7 @@ reqwest = { version = "0.12.15", features = ["json"] } serde = { version = "1.0.219", features = ["derive"] } serde_json = "1.0.140" thiserror = "2.0.12" -tokio = { version = "1.44.2", features = ["macros", "rt"] } url = "2.5.4" + +[dev-dependencies] +tokio = { version = "1.44.2", features = ["macros", "rt"] }