Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
125 changes: 33 additions & 92 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ tauri-plugin-upload = "2.3.1"
tempdir = "0.3.7"
tempfile = "3.20.0"
thiserror = "2.0.12"
tokio = { version = "1.45.1", features = ["macros"] }
tokio = { version = "1.48.0", features = ["macros"] }
toml = "0.8.22"
url = { version = "2.5.4", features = ["serde"] }
uuid = "1.18.1"
Expand Down
2 changes: 1 addition & 1 deletion crates/cli/devenv/dev-database-seed/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ rand.workspace = true

# Runtime
# NB: We switched to Tokio from `async-std` for broader ecosystem support.
tokio = { version = "1.38.0", features = ["macros"] }
tokio = { version = "1.48.0", features = ["macros"] }

sqlx = { version = "0.7.4", features = [ "mysql", "runtime-tokio", "tls-rustls", "chrono" ] }

Expand Down
2 changes: 1 addition & 1 deletion crates/cli/devenv/scrape-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ web_scrapers = { path = "../../../lib/web_scrapers" }

# External
clap = "4.4.8"
tokio = { version = "1.38.0", features = ["macros"] }
tokio = { version = "1.48.0", features = ["macros"] }
2 changes: 1 addition & 1 deletion crates/cli/production/db-backfill/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ log = "0.4.14"
# Bigger pieces
futures = { version = "0.3.17", features = ["thread-pool"] }
sqlx = { version = "0.7.4", features = [ "mysql", "runtime-tokio", "tls-rustls", "chrono" ] }
tokio = { version = "1.38.0", features = ["macros"] }
tokio = { version = "1.48.0", features = ["macros"] }

# Serialization
serde = "1.0.125"
Expand Down
2 changes: 1 addition & 1 deletion crates/cli/production/db-cleanup/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ itertools = "0.13.0"
log = "0.4.14"

# Bigger pieces
tokio = { version = "1.38.0", features = ["macros"] }
tokio = { version = "1.48.0", features = ["macros"] }
sqlx = { version = "0.7.4", features = [ "mysql", "runtime-tokio", "tls-rustls", "chrono" ] }

# Serialization
Expand Down
2 changes: 1 addition & 1 deletion crates/cli/production/elasticsearch-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ log = "0.4.14"
strum = { version = "0.26", features = ["derive"] }

# Bigger pieces
tokio = { version = "1.38.0", features = ["macros"] }
tokio = { version = "1.48.0", features = ["macros"] }
sqlx = { version = "0.7.4", features = [ "mysql", "runtime-tokio", "tls-rustls", "chrono" ] }
elasticsearch = "8.5.0-alpha.1"

Expand Down
2 changes: 1 addition & 1 deletion crates/desktop/artcraft/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ tauri-plugin-upload.workspace = true
tauri.workspace = true
tempdir.workspace = true
tempfile.workspace = true
tokio = { version = "1.42", features = ["rt", "rt-multi-thread", "fs"] }
tokio = { version = "1.48", features = ["rt", "rt-multi-thread", "fs"] }
tokio-util = { version = "0.7", features = ["codec"] }
url.workspace = true

Expand Down
2 changes: 1 addition & 1 deletion crates/lib/migration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ serde_json.workspace = true
toml.workspace = true

# Runtime + Clients
tokio = { version = "1.38.0", features = ["full"] }
tokio = { version = "1.48.0", features = ["full"] }
sqlx = { version = "0.7.4", features = [ "mysql", "runtime-tokio", "tls-rustls", "chrono" ] }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/schema/database/mysql_queries/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ serde_json.workspace = true
# BigNum
num-traits = "0.2.19"

tokio = { version = "1.38.0", features = ["full"] }
tokio = { version = "1.48.0", features = ["full"] }
rand.workspace = true
sqlx = { version = "0.7.4", features = [ "mysql", "runtime-tokio", "tls-rustls", "chrono", "bigdecimal" ] }

Expand Down
2 changes: 1 addition & 1 deletion crates/service/job/analytics_job/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ sqlx = { version = "0.7.4", features = [ "mysql", "runtime-tokio", "tls-rustls",

# Runtime
# NB: We switched to Tokio from `async-std` for broader ecosystem support.
tokio = { version = "1.38.0", features = ["macros"] }
tokio = { version = "1.48.0", features = ["macros"] }
futures = "0.3.29"

# Serialization
Expand Down
Loading