Skip to content

Commit

Permalink
version bumps
Browse files Browse the repository at this point in the history
  • Loading branch information
ddboline committed Mar 19, 2024
1 parent 0802504 commit 681a5c5
Show file tree
Hide file tree
Showing 20 changed files with 34 additions and 36 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "garmin_rust"
version = "0.14.14"
version = "0.14.15"
authors = ["Daniel Boline <[email protected]>"]
edition = "2018"

Expand All @@ -15,7 +15,7 @@ Process and display info about gps activity files."""
[dependencies]
anyhow = "1.0"
clap = {version="4.0", features=["derive"]}
env_logger = "0.11"
env_logger = {version="0.11", features=["color", "humantime", "regex"], default_features = false}
fitbit_bot = {path="fitbit_bot"}
fitbit_lib = {path="fitbit_lib"}
garmin_cli = {path="garmin_cli"}
Expand All @@ -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="0.9.2" }
tempdir = "0.3"
tokio = {version="1.35", features=["rt", "macros", "rt-multi-thread"]}
tokio = {version="1.36", features=["rt", "macros", "rt-multi-thread"]}

[workspace]
members = [
Expand Down
4 changes: 2 additions & 2 deletions fitbit_bot/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fitbit_bot"
version = "0.14.14"
version = "0.14.15"
authors = ["Daniel Boline <[email protected]>"]
edition = "2018"

Expand All @@ -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="0.9.2" }
telegram-bot = {git = "https://github.com/ddboline/telegram-bot.git", tag="0.9.0-4", default_features=false}
tokio = {version="1.35", features=["rt", "macros", "rt-multi-thread"]}
tokio = {version="1.36", features=["rt", "macros", "rt-multi-thread"]}

[dev-dependencies]
maplit = "1.0"
Expand Down
8 changes: 4 additions & 4 deletions fitbit_lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fitbit_lib"
version = "0.14.14"
version = "0.14.15"
authors = ["Daniel Boline <[email protected]>"]
edition = "2018"

Expand All @@ -9,7 +9,7 @@ edition = "2018"
[dependencies]
anyhow = "1.0"
avro-rs = {version = "0.13", features = ["snappy"]}
base64 = "0.21"
base64 = "0.22"
bytes = "1.0"
crossbeam-utils = "0.8"
derive_more = "0.99"
Expand All @@ -23,7 +23,7 @@ itertools = "0.12"
log = "0.4"
maplit = "1.0"
once_cell = "1.0"
polars = {version="0.37", features=["temporal", "parquet", "lazy"]}
polars = {version="0.38", features=["temporal", "parquet", "lazy"]}
postgres_query = {git = "https://github.com/ddboline/rust-postgres-query", tag = "0.3.6", features=["deadpool"]}
rand = "0.8"
rayon = "1.5"
Expand All @@ -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.35", features=["rt", "macros", "rt-multi-thread"]}
tokio = {version="1.36", features=["rt", "macros", "rt-multi-thread"]}
uuid = { version = "1.0", features = ["serde", "v4"] }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion fitbit_lib/src/fitbit_archive.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use log::info;
use polars::{
df as dataframe,
prelude::{
col, ChunkAgg, IntoLazy, NamedFrom, ParquetReader, ParquetWriter, SerReader,
col, ChunkAgg, IntoLazy, ParquetReader, ParquetWriter, SerReader,
UniqueKeepStrategy,
},
};
Expand Down
2 changes: 1 addition & 1 deletion fitbit_lib/src/fitbit_heartrate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use rayon::{
iter::{IntoParallelIterator, ParallelExtend, ParallelIterator},
slice::ParallelSliceMut,
};
use serde::{self, Deserialize, Deserializer, Serialize};
use serde::{Deserialize, Deserializer, Serialize};
use smallvec::SmallVec;
use stack_string::{format_sstr, StackString};
use std::{
Expand Down
2 changes: 1 addition & 1 deletion fitbit_lib/src/scale_measurement.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use futures::{stream::FuturesUnordered, TryStreamExt};
use log::debug;
use postgres_query::{query, query_dyn, FromSqlRow, Parameter};
use rayon::iter::{IntoParallelIterator, ParallelIterator};
use serde::{self, Deserialize, Serialize};
use serde::{Deserialize, Serialize};
use smallvec::SmallVec;
use stack_string::format_sstr;
use std::{collections::HashSet, fmt, sync::Arc};
Expand Down
4 changes: 2 additions & 2 deletions garmin_cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "garmin_cli"
version = "0.14.14"
version = "0.14.15"
authors = ["Daniel Boline <[email protected]>"]
edition = "2018"

Expand Down Expand Up @@ -30,7 +30,7 @@ strava_lib = {path="../strava_lib"}
tempdir = "0.3"
time = {version="0.3", features=["serde-human-readable", "macros", "formatting", "parsing"]}
time-tz = {version="2.0", features=["system"]}
tokio = {version="1.35", features=["rt", "macros", "rt-multi-thread"]}
tokio = {version="1.36", 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="0.9.2" }
stdout-channel = "0.6"
4 changes: 2 additions & 2 deletions garmin_connect_lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "garmin_connect_lib"
version = "0.14.14"
version = "0.14.15"
authors = ["Daniel Boline <[email protected]>"]
edition = "2018"

Expand All @@ -22,5 +22,5 @@ smallvec = "1.6"
stack-string = { git = "https://github.com/ddboline/stack-string-rs.git", features=["postgres_types"], tag="0.9.2" }
time = {version="0.3", features=["serde-human-readable", "macros", "formatting", "parsing"]}
time-tz = {version="2.0", features=["system"]}
tokio = {version="1.35", features=["rt", "macros", "rt-multi-thread"]}
tokio = {version="1.36", features=["rt", "macros", "rt-multi-thread"]}
url = "2.3"
8 changes: 4 additions & 4 deletions garmin_http/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "garmin_http"
version = "0.14.14"
version = "0.14.15"
authors = ["Daniel Boline <[email protected]>"]
edition = "2018"

[dependencies]
anyhow = "1.0"
authorized_users = { git = "https://github.com/ddboline/auth_server_rust.git", tag="0.11.9"}
base64 = "0.21"
authorized_users = { git = "https://github.com/ddboline/auth_server_rust.git", tag="0.11.12"}
base64 = "0.22"
cookie = {version="0.18", features=["percent-encode"]}
derive_more = "0.99"
dioxus = "0.4"
Expand Down Expand Up @@ -40,7 +40,7 @@ tempdir = "0.3"
thiserror = "1.0"
time = {version="0.3", features=["serde-human-readable", "macros", "formatting", "parsing"]}
time-tz = {version="2.0", features=["system"]}
tokio = {version="1.35", features=["rt", "macros", "rt-multi-thread"]}
tokio = {version="1.36", features=["rt", "macros", "rt-multi-thread"]}
tokio-stream = "0.1"
url = "2.3"
uuid = "1.0"
2 changes: 1 addition & 1 deletion garmin_http/src/garmin_rust_routes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ use rweb_helper::{
};
use serde::{Deserialize, Serialize};
use stack_string::{format_sstr, StackString};
use std::{convert::Infallible, string::ToString};
use std::convert::Infallible;
use tempdir::TempDir;
use tokio::{fs::File, io::AsyncWriteExt, task::spawn_blocking};
use tokio_stream::StreamExt;
Expand Down
2 changes: 1 addition & 1 deletion garmin_lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "garmin_lib"
version = "0.14.14"
version = "0.14.15"
authors = ["Daniel Boline <[email protected]>"]
edition = "2018"

Expand Down
4 changes: 2 additions & 2 deletions garmin_models/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "garmin_models"
version = "0.14.14"
version = "0.14.15"
authors = ["Daniel Boline <[email protected]>"]
edition = "2021"

Expand All @@ -27,7 +27,7 @@ serde_json = "1.0"
stack-string = { git = "https://github.com/ddboline/stack-string-rs.git", features=["postgres_types"], tag="0.9.2" }
time = {version="0.3", features=["serde-human-readable", "macros", "formatting", "parsing"]}
time-tz = {version="2.0", features=["system"]}
tokio = {version="1.35", features=["rt", "macros", "rt-multi-thread"]}
tokio = {version="1.36", features=["rt", "macros", "rt-multi-thread"]}
uuid = { version = "1.0", features = ["serde", "v4"] }
url = "2.3"

Expand Down
1 change: 0 additions & 1 deletion garmin_models/src/garmin_sync.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ use stack_string::{format_sstr, StackString};
use std::{
borrow::Borrow,
collections::{HashMap, HashSet},
convert::TryInto,
ffi::OsStr,
fmt::Write,
fs,
Expand Down
2 changes: 1 addition & 1 deletion garmin_parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "garmin_parser"
version = "0.14.14"
version = "0.14.15"
authors = ["Daniel Boline <[email protected]>"]
edition = "2021"

Expand Down
2 changes: 1 addition & 1 deletion garmin_reports/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "garmin_reports"
version = "0.14.14"
version = "0.14.15"
authors = ["Daniel Boline <[email protected]>"]
edition = "2018"

Expand Down
6 changes: 3 additions & 3 deletions garmin_utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "garmin_utils"
version = "0.14.14"
version = "0.14.15"
authors = ["Daniel Boline <[email protected]>"]
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
anyhow = "1.0"
base64 = "0.21"
base64 = "0.22"
bytes = "1.0"
deadpool-postgres = "0.12"
fitparser = {git="https://github.com/ddboline/fitparse-rs.git", branch="time-0.3-0.5.2"}
Expand All @@ -25,7 +25,7 @@ stack-string = { git = "https://github.com/ddboline/stack-string-rs.git", featur
subprocess = "0.2"
time = {version="0.3", features=["serde-human-readable", "macros", "formatting", "parsing"]}
time-tz = {version="2.0", features=["system"]}
tokio = {version="1.35", features=["rt", "macros", "rt-multi-thread"]}
tokio = {version="1.36", 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"] }
Expand Down
1 change: 0 additions & 1 deletion garmin_utils/src/garmin_util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ use smallvec::SmallVec;
use stack_string::{format_sstr, StackString};
use std::{
collections::HashSet,
convert::TryInto,
fs::{remove_file, File},
future::Future,
io::{BufRead, BufReader, Read},
Expand Down
2 changes: 1 addition & 1 deletion garmin_utils/src/sport_types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use bytes::BytesMut;
use once_cell::sync::Lazy;
use serde::{Deserialize, Deserializer, Serialize, Serializer};
use stack_string::StackString;
use std::{collections::HashMap, convert::TryFrom, fmt, str::FromStr};
use std::{collections::HashMap, fmt, str::FromStr};
use tokio_postgres::types::{FromSql, IsNull, ToSql, Type};

static SPORT_TYPE_MAP: Lazy<HashMap<&'static str, SportTypes>> = Lazy::new(init_sport_type_map);
Expand Down
2 changes: 1 addition & 1 deletion race_result_analysis/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "race_result_analysis"
version = "0.14.14"
version = "0.14.15"
authors = ["Daniel Boline <[email protected]>"]
edition = "2018"

Expand Down
6 changes: 3 additions & 3 deletions strava_lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "strava_lib"
version = "0.14.14"
version = "0.14.15"
authors = ["Daniel Boline <[email protected]>"]
edition = "2018"

[dependencies]
anyhow = "1.0"
base64 = "0.21"
base64 = "0.22"
crossbeam-utils = "0.8"
futures = "0.3"
garmin_lib = { path = "../garmin_lib" }
Expand All @@ -24,6 +24,6 @@ stack-string = { git = "https://github.com/ddboline/stack-string-rs.git", featur
tempfile = "3.1"
time = {version="0.3", features=["serde-human-readable", "macros", "formatting", "parsing"]}
time-tz = {version="2.0", features=["system"]}
tokio = {version="1.35", features=["rt", "macros", "rt-multi-thread"]}
tokio = {version="1.36", features=["rt", "macros", "rt-multi-thread"]}
tokio-stream = "0.1"
uuid = "1.0"

0 comments on commit 681a5c5

Please sign in to comment.