From f2b2f4e68aeb6db0147b81e1b5cd57007fe006d6 Mon Sep 17 00:00:00 2001 From: Michael Lieberman Date: Wed, 10 Apr 2024 14:37:05 +0000 Subject: [PATCH] Cleanup unused deps --- Cargo.lock | 12 ++---------- skootrs-lib/Cargo.toml | 2 -- skootrs-model/Cargo.toml | 2 -- skootrs-rest/Cargo.toml | 4 ---- 4 files changed, 2 insertions(+), 18 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 961aba5..84432e5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -386,9 +386,9 @@ checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" [[package]] name = "basic-toml" -version = "0.1.7" +version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2f2139706359229bfa8f19142ac1155b4b80beafb7a60471ac5dd109d4a19778" +checksum = "823388e228f614e9558c6804262db37960ec8821856535f5c3f59913140558f8" dependencies = [ "serde", ] @@ -2463,13 +2463,11 @@ dependencies = [ name = "skootrs-lib" version = "0.1.0" dependencies = [ - "ahash", "askama", "base64", "chrono", "futures", "octocrab 0.33.3", - "regress", "schemars", "serde", "serde_json", @@ -2492,8 +2490,6 @@ dependencies = [ "schemars", "serde", "serde_json", - "serde_yaml", - "sha2", "strum", "url", "utoipa", @@ -2504,8 +2500,6 @@ name = "skootrs-rest" version = "0.1.0" dependencies = [ "actix-web", - "opentelemetry", - "opentelemetry-jaeger", "serde", "serde_json", "skootrs-lib", @@ -2513,8 +2507,6 @@ dependencies = [ "skootrs-statestore", "tokio", "tracing-actix-web", - "tracing-bunyan-formatter", - "tracing-subscriber", "utoipa", "utoipa-rapidoc", "utoipa-redoc", diff --git a/skootrs-lib/Cargo.toml b/skootrs-lib/Cargo.toml index 99ac056..d15b14b 100644 --- a/skootrs-lib/Cargo.toml +++ b/skootrs-lib/Cargo.toml @@ -13,12 +13,10 @@ serde = { version = "1.0.193", features = ["derive"] } utoipa = { version = "4.1.0" } chrono = { version = "0.4.31", features = ["serde"] } askama = "0.12.1" -regress = "0.7.1" schemars = { version = "0.8.16", features = ["chrono", "url"] } tracing = "0.1" futures = "0.3.30" skootrs-model = { path = "../skootrs-model" } -ahash = "0.8.7" sha2 = "0.10.8" url = "2.5.0" base64 = "0.21.7" diff --git a/skootrs-model/Cargo.toml b/skootrs-model/Cargo.toml index 0ce115a..cb6b75d 100644 --- a/skootrs-model/Cargo.toml +++ b/skootrs-model/Cargo.toml @@ -7,13 +7,11 @@ edition = "2021" [dependencies] serde_json = "1.0.112" -serde_yaml = "0.9.30" serde = { version = "1.0.193", features = ["derive"] } utoipa = { version = "4.1.0" } chrono = { version = "0.4.31", features = ["serde"] } schemars = { version = "0.8.16", features = ["chrono", "url"] } regress = "0.7.1" -sha2 = "0.10.8" url = "2.5.0" strum = { version = "0.26.1", features = ["derive"] } diff --git a/skootrs-rest/Cargo.toml b/skootrs-rest/Cargo.toml index 62c4092..cdbf47f 100644 --- a/skootrs-rest/Cargo.toml +++ b/skootrs-rest/Cargo.toml @@ -17,8 +17,4 @@ tokio = { version = "1.34.0", features = ["full", "tracing", "macros", "rt-multi serde = { version = "1.0.193", features = ["derive"] } skootrs-lib = { path = "../skootrs-lib" } skootrs-model = { path = "../skootrs-model", features = ["openapi"] } -opentelemetry-jaeger = "0.20.0" -opentelemetry = "0.21.0" -tracing-subscriber = "0.3.18" -tracing-bunyan-formatter = "0.3.9" skootrs-statestore = { path = "../skootrs-statestore" } \ No newline at end of file