From ff186930c8b708f35598262a191f05f93b65fbe8 Mon Sep 17 00:00:00 2001 From: Kyler Chin <7539174+kylerchin@users.noreply.github.com> Date: Tue, 27 Feb 2024 18:52:20 -0800 Subject: [PATCH] Tokio is not required to run, only to test --- Cargo.toml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index bf7fd64..1c1ddb3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "amtrak-gtfs-rt" -version = "0.1.18" +version = "0.1.19" license = "AGPL-3.0" description = "Converts Amtrak Track-A-Train to valid GTFS-rt vehicle and trip information" edition = "2021" @@ -28,4 +28,6 @@ reqwest = {version = "0.11", features = ["gzip","brotli","rustls-tls","deflate", rust-crypto = "0.2" serde = "1.0" serde_json = "1.0" -tokio = { version = "1.35", features = ["full"] } + +[dev-dependencies] +tokio = { version = "1.35", features = ["full"] } \ No newline at end of file