Skip to content

Commit

Permalink
version bumps
Browse files Browse the repository at this point in the history
  • Loading branch information
ddboline committed Dec 24, 2023
1 parent 1b51170 commit 228e53b
Show file tree
Hide file tree
Showing 13 changed files with 24 additions and 24 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "garmin_rust"
version = "0.14.7"
version = "0.14.8"
authors = ["Daniel Boline <[email protected]>"]
edition = "2018"

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.34", features=["rt", "macros", "rt-multi-thread"]}
tokio = {version="1.35", 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.7"
version = "0.14.8"
authors = ["Daniel Boline <[email protected]>"]
edition = "2018"

Expand All @@ -11,7 +11,7 @@ fitbit_lib = {path="../fitbit_lib"}
garmin_lib = {path="../garmin_lib"}
garmin_utils = {path="../garmin_utils"}
futures = "0.3"
tokio = {version="1.34", features=["rt", "macros", "rt-multi-thread"]}
tokio = {version="1.35", features=["rt", "macros", "rt-multi-thread"]}
crossbeam-utils = "0.8"
lazy_static = "1.4"
parking_lot = "0.12"
Expand Down
4 changes: 2 additions & 2 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.7"
version = "0.14.8"
authors = ["Daniel Boline <[email protected]>"]
edition = "2018"

Expand Down Expand Up @@ -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.34", features=["rt", "macros", "rt-multi-thread"]}
tokio = {version="1.35", features=["rt", "macros", "rt-multi-thread"]}
uuid = { version = "1.0", features = ["serde", "v4"] }

[dev-dependencies]
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.7"
version = "0.14.8"
authors = ["Daniel Boline <[email protected]>"]
edition = "2018"

Expand Down Expand Up @@ -31,7 +31,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.34", features=["rt", "macros", "rt-multi-thread"]}
tokio = {version="1.35", 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.7"
version = "0.14.8"
authors = ["Daniel Boline <[email protected]>"]
edition = "2018"

Expand All @@ -23,5 +23,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.34", features=["rt", "macros", "rt-multi-thread"]}
tokio = {version="1.35", features=["rt", "macros", "rt-multi-thread"]}
url = "2.3"
6 changes: 3 additions & 3 deletions garmin_http/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "garmin_http"
version = "0.14.7"
version = "0.14.8"
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.7"}
authorized_users = { git = "https://github.com/ddboline/auth_server_rust.git", tag="0.11.8"}
base64 = "0.21"
cookie = {version="0.18", features=["percent-encode"]}
derive_more = "0.99"
Expand Down Expand Up @@ -41,7 +41,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.34", features=["rt", "macros", "rt-multi-thread"]}
tokio = {version="1.35", features=["rt", "macros", "rt-multi-thread"]}
tokio-stream = "0.1"
url = "2.3"
uuid = "1.0"
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.7"
version = "0.14.8"
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.7"
version = "0.14.8"
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.34", features=["rt", "macros", "rt-multi-thread"]}
tokio = {version="1.35", features=["rt", "macros", "rt-multi-thread"]}
uuid = { version = "1.0", features = ["serde", "v4"] }
url = "2.3"

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.7"
version = "0.14.8"
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.7"
version = "0.14.8"
authors = ["Daniel Boline <[email protected]>"]
edition = "2018"

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

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.34", features=["rt", "macros", "rt-multi-thread"]}
tokio = {version="1.35", 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
4 changes: 2 additions & 2 deletions 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.7"
version = "0.14.8"
authors = ["Daniel Boline <[email protected]>"]
edition = "2018"

Expand All @@ -25,6 +25,6 @@ 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.34", features=["rt", "macros", "rt-multi-thread"]}
tokio = {version="1.35", 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"] }
4 changes: 2 additions & 2 deletions strava_lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "strava_lib"
version = "0.14.7"
version = "0.14.8"
authors = ["Daniel Boline <[email protected]>"]
edition = "2018"

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.34", features=["rt", "macros", "rt-multi-thread"]}
tokio = {version="1.35", features=["rt", "macros", "rt-multi-thread"]}
tokio-stream = "0.1"
uuid = "1.0"

0 comments on commit 228e53b

Please sign in to comment.