From 1ce446f2dfcbaaf91a3072767b36c62e9224a90f Mon Sep 17 00:00:00 2001 From: Daniel Boline Date: Wed, 1 Jan 2025 08:23:41 -0500 Subject: [PATCH] version bumps --- Cargo.toml | 4 ++-- fitbit_bot/Cargo.toml | 4 ++-- fitbit_lib/Cargo.toml | 8 ++++---- garmin_cli/Cargo.toml | 8 ++++---- garmin_http/Cargo.toml | 14 +++++++------- garmin_lib/Cargo.toml | 2 +- garmin_models/Cargo.toml | 10 +++++----- garmin_parser/Cargo.toml | 6 +++--- garmin_reports/Cargo.toml | 4 ++-- garmin_utils/Cargo.toml | 4 ++-- race_result_analysis/Cargo.toml | 6 +++--- strava_lib/Cargo.toml | 2 +- 12 files changed, 36 insertions(+), 36 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 290a2f84..ad296d60 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "garmin_rust" -version = "0.15.3" +version = "0.15.4" authors = ["Daniel Boline "] edition = "2018" @@ -26,7 +26,7 @@ garmin_utils = {path="garmin_utils"} log = "0.4" stack-string = { git = "https://github.com/ddboline/stack-string-rs.git", features=["postgres_types"], tag="1.0.2" } tempfile = "3.14" -tokio = {version="1.41", features=["rt", "macros", "rt-multi-thread"]} +tokio = {version="1.42", features=["rt", "macros", "rt-multi-thread"]} [workspace] members = [ diff --git a/fitbit_bot/Cargo.toml b/fitbit_bot/Cargo.toml index ca1b6e8a..e23df099 100644 --- a/fitbit_bot/Cargo.toml +++ b/fitbit_bot/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fitbit_bot" -version = "0.15.3" +version = "0.15.4" authors = ["Daniel Boline "] edition = "2018" @@ -19,7 +19,7 @@ once_cell = "1.0" parking_lot = "0.12" stack-string = { git = "https://github.com/ddboline/stack-string-rs.git", features=["postgres_types"], tag="1.0.2" } telegram-bot = {git = "https://github.com/ddboline/telegram-bot.git", tag="0.9.0-4", default-features=false} -tokio = {version="1.41", features=["rt", "macros", "rt-multi-thread"]} +tokio = {version="1.42", features=["rt", "macros", "rt-multi-thread"]} [dev-dependencies] maplit = "1.0" diff --git a/fitbit_lib/Cargo.toml b/fitbit_lib/Cargo.toml index 18569bf4..c196908d 100644 --- a/fitbit_lib/Cargo.toml +++ b/fitbit_lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fitbit_lib" -version = "0.15.3" +version = "0.15.4" authors = ["Daniel Boline "] edition = "2018" @@ -19,11 +19,11 @@ garmin_lib = {path = "../garmin_lib"} garmin_models = {path="../garmin_models"} garmin_utils = {path="../garmin_utils"} glob = "0.3" -itertools = "0.13" +itertools = "0.14" log = "0.4" maplit = "1.0" once_cell = "1.0" -polars = {version="0.44", features=["temporal", "parquet", "lazy"]} +polars = {version="0.45", features=["temporal", "parquet", "lazy"]} postgres_query = {git = "https://github.com/ddboline/rust-postgres-query", tag = "0.3.8", features=["deadpool"]} rand = "0.8" rayon = "1.5" @@ -35,7 +35,7 @@ stack-string = { git = "https://github.com/ddboline/stack-string-rs.git", featur statistical = "1.0" time = {version="0.3", features=["serde-human-readable", "macros", "formatting", "parsing"]} time-tz = {version="2.0", features=["system"]} -tokio = {version="1.41", features=["rt", "macros", "rt-multi-thread"]} +tokio = {version="1.42", features=["rt", "macros", "rt-multi-thread"]} uuid = { version = "1.0", features = ["serde", "v4"] } [dev-dependencies] diff --git a/garmin_cli/Cargo.toml b/garmin_cli/Cargo.toml index 0d4bdd66..765488ed 100644 --- a/garmin_cli/Cargo.toml +++ b/garmin_cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "garmin_cli" -version = "0.15.3" +version = "0.15.4" authors = ["Daniel Boline "] edition = "2018" @@ -8,7 +8,7 @@ edition = "2018" [dependencies] anyhow = "1.0" -aws-config = {version="1.0", features=["behavior-version-latest"]} +aws-config = {version="1.5", features=["behavior-version-latest"]} clap = {version="4.0", features=["derive"]} derive_more = {version="1.0", features=["full"]} fitbit_lib = {path="../fitbit_lib"} @@ -18,7 +18,7 @@ garmin_models={path="../garmin_models"} garmin_parser={path="../garmin_parser"} garmin_reports = {path="../garmin_reports"} garmin_utils={path="../garmin_utils"} -itertools = "0.13" +itertools = "0.14" log = "0.4" notify = "7.0" race_result_analysis = {path="../race_result_analysis"} @@ -31,7 +31,7 @@ strava_lib = {path="../strava_lib"} tempfile = "3.12" time = {version="0.3", features=["serde-human-readable", "macros", "formatting", "parsing"]} time-tz = {version="2.0", features=["system"]} -tokio = {version="1.41", features=["rt", "macros", "rt-multi-thread"]} +tokio = {version="1.42", features=["rt", "macros", "rt-multi-thread"]} tokio-postgres = {version = "0.7", features = ["with-time-0_3"]} stack-string = { git = "https://github.com/ddboline/stack-string-rs.git", features=["postgres_types"], tag="1.0.2" } stdout-channel = "0.6" diff --git a/garmin_http/Cargo.toml b/garmin_http/Cargo.toml index c5f864f5..af782da9 100644 --- a/garmin_http/Cargo.toml +++ b/garmin_http/Cargo.toml @@ -1,18 +1,18 @@ [package] name = "garmin_http" -version = "0.15.3" +version = "0.15.4" authors = ["Daniel Boline "] edition = "2018" [dependencies] anyhow = "1.0" -authorized_users = { git = "https://github.com/ddboline/auth_server_rust.git", tag="0.12.1"} +authorized_users = { git = "https://github.com/ddboline/auth_server_rust.git", tag="0.12.2"} base64 = "0.22" cookie = {version="0.18", features=["percent-encode"]} derive_more = {version="1.0", features=["full"]} -dioxus = "0.5" -dioxus-core = "0.5" -dioxus-ssr = "0.5" +dioxus = "0.6" +dioxus-core = "0.6" +dioxus-ssr = "0.6" fitbit_lib = {path="../fitbit_lib/"} futures = "0.3" garmin_cli = {path = "../garmin_cli"} @@ -22,7 +22,7 @@ garmin_parser = {path="../garmin_parser"} garmin_reports = {path="../garmin_reports"} garmin_utils = {path="../garmin_utils"} handlebars = "6.1" -itertools = "0.13" +itertools = "0.14" log = "0.4" maplit = "1.0" notify = "7.0" @@ -42,7 +42,7 @@ tempfile = "3.12" thiserror = "2.0" time = {version="0.3", features=["serde-human-readable", "macros", "formatting", "parsing"]} time-tz = {version="2.0", features=["system"]} -tokio = {version="1.41", features=["rt", "macros", "rt-multi-thread"]} +tokio = {version="1.42", features=["rt", "macros", "rt-multi-thread"]} tokio-stream = "0.1" url = "2.3" uuid = "1.0" diff --git a/garmin_lib/Cargo.toml b/garmin_lib/Cargo.toml index 0a3169b6..e9356f52 100644 --- a/garmin_lib/Cargo.toml +++ b/garmin_lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "garmin_lib" -version = "0.15.3" +version = "0.15.4" authors = ["Daniel Boline "] edition = "2018" diff --git a/garmin_models/Cargo.toml b/garmin_models/Cargo.toml index 6db16a37..bd46e3f0 100644 --- a/garmin_models/Cargo.toml +++ b/garmin_models/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "garmin_models" -version = "0.15.3" +version = "0.15.4" authors = ["Daniel Boline "] edition = "2021" @@ -9,13 +9,13 @@ edition = "2021" [dependencies] anyhow = "1.0" apache-avro = {version = "0.17", features = ["snappy"]} -aws-config = {version="1.0", features=["behavior-version-latest"]} -aws-sdk-s3 = "1.1" +aws-config = {version="1.5", features=["behavior-version-latest"]} +aws-sdk-s3 = "1.67" fitparser = {git="https://github.com/ddboline/fitparse-rs.git", branch="time-0.3-0.5.2"} futures = "0.3" garmin_lib = {path="../garmin_lib"} garmin_utils = {path="../garmin_utils"} -itertools = "0.13" +itertools = "0.14" json = "0.12" log = "0.4" once_cell = "1.0" @@ -27,7 +27,7 @@ serde_json = "1.0" stack-string = { git = "https://github.com/ddboline/stack-string-rs.git", features=["postgres_types"], tag="1.0.2" } time = {version="0.3", features=["serde-human-readable", "macros", "formatting", "parsing"]} time-tz = {version="2.0", features=["system"]} -tokio = {version="1.41", features=["rt", "macros", "rt-multi-thread"]} +tokio = {version="1.42", features=["rt", "macros", "rt-multi-thread"]} uuid = { version = "1.0", features = ["serde", "v4"] } url = "2.3" diff --git a/garmin_parser/Cargo.toml b/garmin_parser/Cargo.toml index c02c8dd0..d33eb32d 100644 --- a/garmin_parser/Cargo.toml +++ b/garmin_parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "garmin_parser" -version = "0.15.3" +version = "0.15.4" authors = ["Daniel Boline "] edition = "2021" @@ -8,8 +8,8 @@ edition = "2021" [dependencies] anyhow = "1.0" -aws-config = {version="1.0", features=["behavior-version-latest"]} -aws-sdk-s3 = "1.1" +aws-config = {version="1.5", features=["behavior-version-latest"]} +aws-sdk-s3 = "1.6" fitparser = {git="https://github.com/ddboline/fitparse-rs.git", branch="time-0.3-0.5.2"} flate2 = "1.0" garmin_lib = {path="../garmin_lib"} diff --git a/garmin_reports/Cargo.toml b/garmin_reports/Cargo.toml index 66507646..6c575fee 100644 --- a/garmin_reports/Cargo.toml +++ b/garmin_reports/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "garmin_reports" -version = "0.15.3" +version = "0.15.4" authors = ["Daniel Boline "] edition = "2018" @@ -13,7 +13,7 @@ futures = "0.3" garmin_lib = {path="../garmin_lib"} garmin_models = {path="../garmin_models"} garmin_utils = {path="../garmin_utils"} -itertools = "0.13" +itertools = "0.14" log = "0.4" once_cell = "1.0" postgres_query = {git = "https://github.com/ddboline/rust-postgres-query", tag = "0.3.8", features=["deadpool"]} diff --git a/garmin_utils/Cargo.toml b/garmin_utils/Cargo.toml index 398dbcfe..14a0d0e9 100644 --- a/garmin_utils/Cargo.toml +++ b/garmin_utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "garmin_utils" -version = "0.15.3" +version = "0.15.4" authors = ["Daniel Boline "] edition = "2021" @@ -26,7 +26,7 @@ subprocess = "0.2" tempfile = "3.12" time = {version="0.3", features=["serde-human-readable", "macros", "formatting", "parsing"]} time-tz = {version="2.0", features=["system"]} -tokio = {version="1.41", features=["rt", "macros", "rt-multi-thread"]} +tokio = {version="1.42", features=["rt", "macros", "rt-multi-thread"]} tokio-postgres = {version = "0.7", features = ["with-time-0_3", "with-uuid-1"]} url = "2.3" uuid = { version = "1.0", features = ["serde", "v4"] } diff --git a/race_result_analysis/Cargo.toml b/race_result_analysis/Cargo.toml index 9bac4fb4..25e3c348 100644 --- a/race_result_analysis/Cargo.toml +++ b/race_result_analysis/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "race_result_analysis" -version = "0.15.3" +version = "0.15.4" authors = ["Daniel Boline "] edition = "2018" @@ -13,7 +13,7 @@ futures = "0.3" garmin_lib = {path="../garmin_lib"} garmin_models = {path="../garmin_models"} garmin_utils = {path="../garmin_utils"} -itertools = "0.13" +itertools = "0.14" log = "0.4" ndarray = "0.16" parking_lot = "0.12" @@ -24,7 +24,7 @@ smallvec = "1.6" stack-string = { git = "https://github.com/ddboline/stack-string-rs.git", features=["postgres_types"], tag="1.0.2" } time = {version="0.3", features=["serde-human-readable", "macros", "formatting", "parsing"]} time-tz = {version="2.0", features=["system"]} -tokio = {version="1.41", features=["rt", "macros", "rt-multi-thread"]} +tokio = {version="1.42", features=["rt", "macros", "rt-multi-thread"]} tokio-postgres = {version = "0.7", features = ["with-time-0_3", "with-uuid-1"]} uuid = { version = "1.0", features = ["serde", "v4"] } diff --git a/strava_lib/Cargo.toml b/strava_lib/Cargo.toml index be42c661..ae2f3d76 100644 --- a/strava_lib/Cargo.toml +++ b/strava_lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "strava_lib" -version = "0.15.3" +version = "0.15.4" authors = ["Daniel Boline "] edition = "2018"