Skip to content

Commit

Permalink
version bumps
Browse files Browse the repository at this point in the history
  • Loading branch information
ddboline committed Nov 23, 2024
1 parent b64c3a0 commit a275ca5
Show file tree
Hide file tree
Showing 13 changed files with 38 additions and 37 deletions.
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "garmin_rust"
version = "0.14.27"
version = "0.15.0"
authors = ["Daniel Boline <[email protected]>"]
edition = "2018"

Expand All @@ -14,7 +14,7 @@ Process and display info about gps activity files."""

[dependencies]
anyhow = "1.0"
clap = {version="4.0", features=["derive"]}
clap = {version="4.5", features=["derive"]}
env_logger = {version="0.11", features=["color", "humantime", "regex"], default-features = false}
fitbit_bot = {path="fitbit_bot"}
fitbit_lib = {path="fitbit_lib"}
Expand All @@ -24,9 +24,9 @@ garmin_lib = { path = "garmin_lib" }
garmin_models = {path="garmin_models"}
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.3" }
tempfile = "3.12"
tokio = {version="1.40", features=["rt", "macros", "rt-multi-thread"]}
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"]}

[workspace]
members = [
Expand Down
6 changes: 3 additions & 3 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.27"
version = "0.15.0"
authors = ["Daniel Boline <[email protected]>"]
edition = "2018"

Expand All @@ -17,9 +17,9 @@ futures = "0.3"
log = "0.4"
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.3" }
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.40", features=["rt", "macros", "rt-multi-thread"]}
tokio = {version="1.41", features=["rt", "macros", "rt-multi-thread"]}

[dev-dependencies]
maplit = "1.0"
Expand Down
6 changes: 3 additions & 3 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.27"
version = "0.15.0"
authors = ["Daniel Boline <[email protected]>"]
edition = "2018"

Expand Down Expand Up @@ -31,11 +31,11 @@ reqwest = {version="0.12", features=["cookies", "json", "rustls-tls", "stream"],
serde = {version="1.0", features=["derive"]}
serde_json = "1.0"
smallvec = "1.6"
stack-string = { git = "https://github.com/ddboline/stack-string-rs.git", features=["postgres_types"], tag="0.9.3" }
stack-string = { git = "https://github.com/ddboline/stack-string-rs.git", features=["postgres_types"], tag="1.0.2" }
statistical = "1.0"
time = {version="0.3", features=["serde-human-readable", "macros", "formatting", "parsing"]}
time-tz = {version="2.0", features=["system"]}
tokio = {version="1.40", features=["rt", "macros", "rt-multi-thread"]}
tokio = {version="1.41", features=["rt", "macros", "rt-multi-thread"]}
uuid = { version = "1.0", features = ["serde", "v4"] }

[dev-dependencies]
Expand Down
6 changes: 3 additions & 3 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.27"
version = "0.15.0"
authors = ["Daniel Boline <[email protected]>"]
edition = "2018"

Expand Down Expand Up @@ -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.40", features=["rt", "macros", "rt-multi-thread"]}
tokio = {version="1.41", 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.3" }
stack-string = { git = "https://github.com/ddboline/stack-string-rs.git", features=["postgres_types"], tag="1.0.2" }
stdout-channel = "0.6"
10 changes: 5 additions & 5 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.27"
version = "0.15.0"
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.15"}
authorized_users = { git = "https://github.com/ddboline/auth_server_rust.git", tag="0.12.0"}
base64 = "0.22"
cookie = {version="0.18", features=["percent-encode"]}
derive_more = {version="1.0", features=["full"]}
Expand Down Expand Up @@ -36,13 +36,13 @@ serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
serde_yml = "0.0.12"
stack-string = { git = "https://github.com/ddboline/stack-string-rs.git", features=["postgres_types", "rweb-openapi"], tag="0.9.3" }
stack-string = { git = "https://github.com/ddboline/stack-string-rs.git", features=["postgres_types", "rweb-openapi"], tag="1.0.2" }
strava_lib = {path="../strava_lib/"}
tempfile = "3.12"
thiserror = "1.0"
thiserror = "2.0"
time = {version="0.3", features=["serde-human-readable", "macros", "formatting", "parsing"]}
time-tz = {version="2.0", features=["system"]}
tokio = {version="1.40", features=["rt", "macros", "rt-multi-thread"]}
tokio = {version="1.41", features=["rt", "macros", "rt-multi-thread"]}
tokio-stream = "0.1"
url = "2.3"
uuid = "1.0"
4 changes: 2 additions & 2 deletions 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.27"
version = "0.15.0"
authors = ["Daniel Boline <[email protected]>"]
edition = "2018"

Expand All @@ -16,7 +16,7 @@ postgres-types = {version="0.2", features=["with-time-0_3", "with-uuid-1", "with
serde = {version="1.0", features=["derive"]}
serde_json = "1.0"
smallvec = "1.6"
stack-string = { git = "https://github.com/ddboline/stack-string-rs.git", features=["postgres_types"], tag="0.9.3" }
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-postgres = {version = "0.7", features = ["with-time-0_3", "with-uuid-1"]}
Expand Down
6 changes: 3 additions & 3 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.27"
version = "0.15.0"
authors = ["Daniel Boline <[email protected]>"]
edition = "2021"

Expand All @@ -24,10 +24,10 @@ rand = "0.8"
roxmltree = "0.20"
serde = {version="1.0", features=["derive"]}
serde_json = "1.0"
stack-string = { git = "https://github.com/ddboline/stack-string-rs.git", features=["postgres_types"], tag="0.9.3" }
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.40", features=["rt", "macros", "rt-multi-thread"]}
tokio = {version="1.41", features=["rt", "macros", "rt-multi-thread"]}
uuid = { version = "1.0", features = ["serde", "v4"] }
url = "2.3"

Expand Down
4 changes: 2 additions & 2 deletions 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.27"
version = "0.15.0"
authors = ["Daniel Boline <[email protected]>"]
edition = "2021"

Expand All @@ -22,7 +22,7 @@ roxmltree = "0.20"
serde = {version="1.0", features=["derive"]}
serde_json = "1.0"
smallvec = "1.6"
stack-string = { git = "https://github.com/ddboline/stack-string-rs.git", features=["postgres_types"], tag="0.9.3" }
stack-string = { git = "https://github.com/ddboline/stack-string-rs.git", features=["postgres_types"], tag="1.0.2" }
subprocess = "0.2"
time = {version="0.3", features=["serde-human-readable", "macros", "formatting", "parsing"]}

Expand Down
4 changes: 2 additions & 2 deletions 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.27"
version = "0.15.0"
authors = ["Daniel Boline <[email protected]>"]
edition = "2018"

Expand All @@ -18,7 +18,7 @@ log = "0.4"
once_cell = "1.0"
postgres_query = {git = "https://github.com/ddboline/rust-postgres-query", tag = "0.3.8", features=["deadpool"]}
regex = "1.4"
stack-string = { git = "https://github.com/ddboline/stack-string-rs.git", features=["postgres_types", "rweb-openapi"], tag="0.9.3" }
stack-string = { git = "https://github.com/ddboline/stack-string-rs.git", features=["postgres_types", "rweb-openapi"], tag="1.0.2" }
time = {version="0.3", features=["serde-human-readable", "macros", "formatting", "parsing"]}
time-tz = {version="2.0", features=["system"]}
url = "2.3"
Expand Down
6 changes: 3 additions & 3 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.27"
version = "0.15.0"
authors = ["Daniel Boline <[email protected]>"]
edition = "2021"

Expand All @@ -21,12 +21,12 @@ postgres_query = {git = "https://github.com/ddboline/rust-postgres-query", tag =
rand = "0.8"
serde = {version="1.0", features=["derive"]}
smallvec = "1.6"
stack-string = { git = "https://github.com/ddboline/stack-string-rs.git", features=["postgres_types"], tag="0.9.3" }
stack-string = { git = "https://github.com/ddboline/stack-string-rs.git", features=["postgres_types"], tag="1.0.2" }
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.40", features=["rt", "macros", "rt-multi-thread"]}
tokio = {version="1.41", 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: 1 addition & 0 deletions migrations/V18__authorized_users_deleted.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ALTER TABLE authorized_users ADD COLUMN deleted_at TIMESTAMP WITH TIME ZONE;
6 changes: 3 additions & 3 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.27"
version = "0.15.0"
authors = ["Daniel Boline <[email protected]>"]
edition = "2018"

Expand All @@ -21,10 +21,10 @@ postgres_query = {git = "https://github.com/ddboline/rust-postgres-query", tag =
rusfun = { git = "https://github.com/ddboline/rusfun.git" }
serde = {version="1.0", features=["derive"]}
smallvec = "1.6"
stack-string = { git = "https://github.com/ddboline/stack-string-rs.git", features=["postgres_types"], tag="0.9.3" }
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.40", features=["rt", "macros", "rt-multi-thread"]}
tokio = {version="1.41", 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"] }

Expand Down
6 changes: 3 additions & 3 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.27"
version = "0.15.0"
authors = ["Daniel Boline <[email protected]>"]
edition = "2018"

Expand All @@ -20,10 +20,10 @@ reqwest = {version="0.12", features=["cookies", "json", "rustls-tls", "stream",
select = "0.6"
serde = {version="1.0", features=["derive"]}
smallvec = "1.6"
stack-string = { git = "https://github.com/ddboline/stack-string-rs.git", features=["postgres_types"], tag="0.9.3" }
stack-string = { git = "https://github.com/ddboline/stack-string-rs.git", features=["postgres_types"], tag="1.0.2" }
tempfile = "3.1"
time = {version="0.3", features=["serde-human-readable", "macros", "formatting", "parsing"]}
time-tz = {version="2.0", features=["system"]}
tokio = {version="1.40", features=["rt", "macros", "rt-multi-thread"]}
tokio = {version="1.41", features=["rt", "macros", "rt-multi-thread"]}
tokio-stream = "0.1"
uuid = "1.0"

0 comments on commit a275ca5

Please sign in to comment.