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
69 changes: 34 additions & 35 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 active-matches-scraper/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ delay_map = "0.4.1"
metrics = "0.24.3"
tracing = "0.1.44"
common = { version = "0.1.0", path = "../common" }
anyhow = "1.0.101"
anyhow = "1.0.102"
2 changes: 1 addition & 1 deletion builds-fetcher/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2024"
reqwest = { version = "0.13.2", features = ["json"] }
sqlx = { version = "0.8.6", features = ["macros", "postgres", "runtime-tokio", "time"] }
tokio = { version = "1.49.0", features = ["rt-multi-thread", "macros"] }
anyhow = "1.0.101"
anyhow = "1.0.102"
itertools = "0.14.0"
serde_json = "1.0.149"
valveprotos = { git = "https://github.com/deadlock-api/valveprotos-rs.git", rev = "bec6cd7d8b6bd2a10fc80d6df38637a37fd920e1", features = ["gc-client", "serde"] }
Expand Down
2 changes: 1 addition & 1 deletion common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ metrics = "0.24.3"
tracing = "0.1.44"
clickhouse = "0.14.2"
object_store = { version = "0.13.1", features = ["aws"] }
anyhow = "1.0.101"
anyhow = "1.0.102"
sqlx = { version = "0.8.6", features = ["macros", "postgres", "runtime-tokio", "time"] }
fred = { version = "10.1.0", features = ["i-hexpire"] }
metrics-exporter-prometheus = "0.18"
Expand Down
4 changes: 2 additions & 2 deletions history-fetcher/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.1.0"
edition = "2024"

[dependencies]
anyhow = "1.0.101"
anyhow = "1.0.102"
clickhouse = "0.14.2"
common = { version = "0.1.0", path = "../common" }
tokio = { version = "1.49.0", features = ["rt-multi-thread", "macros"] }
Expand All @@ -14,4 +14,4 @@ metrics = "0.24.3"
tracing = "0.1.44"
serde = { version = "1.0.228", features = ["derive"] }
sqlx = { version = "0.8.6", features = ["postgres", "runtime-tokio"] }
futures = "0.3.31"
futures = "0.3.32"
8 changes: 4 additions & 4 deletions hltv-scraper/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@ version = "0.1.0"
edition = "2024"

[dependencies]
anyhow = "1.0.101"
anyhow = "1.0.102"
axum = "0.8.8"
base64 = "0.22.1"
cached = { version = "0.56", features = ["async", "async_tokio_rt_multi_thread"] }
clap = { version = "4.5.57", features = ["derive", "env"] }
clap = { version = "4.5.60", features = ["derive", "env"] }
dashmap = "6.1.0"
fred = { version = "10.1.0", features = ["i-hexpire"] }
haste = { git = "https://github.com/deadlock-api/haste.git", rev = "8bba1c3106624b5c5c6dbd1c04ac9a68647612f3" }
itertools = "0.14.0"
jiff = { version = "0.2.19", features = ["serde"] }
jiff = { version = "0.2.21", features = ["serde"] }
lru = "0.16.3"
metrics = "0.24.3"
object_store = { version = "0.13.1", features = ["aws"] }
Expand All @@ -25,5 +25,5 @@ tokio = { version = "1.49.0", features = ["rt-multi-thread", "macros"] }
tracing = "0.1.44"
valveprotos = { git = "https://github.com/deadlock-api/valveprotos-rs.git", rev = "bec6cd7d8b6bd2a10fc80d6df38637a37fd920e1", features = ["user-msgs"] }
thiserror = "2.0.18"
async-compression = { version = "0.4.39", features = ["tokio", "bzip2", "zstd"] }
async-compression = { version = "0.4.40", features = ["tokio", "bzip2", "zstd"] }
common = { version = "0.1.0", path = "../common" }
6 changes: 3 additions & 3 deletions ingest-worker/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ version = "0.1.0"
edition = "2024"

[dependencies]
async-compression = { version = "0.4.39", features = ["tokio", "bzip2"] }
async-compression = { version = "0.4.40", features = ["tokio", "bzip2"] }
clickhouse = { version = "0.14.2", features = ["test-util", "time"] }
futures = "0.3.31"
futures = "0.3.32"
prost = "0.14.3"
object_store = { version = "0.13.1", features = ["aws"] }
serde = { version = "1.0.228", features = ["derive"] }
Expand All @@ -17,4 +17,4 @@ metrics = "0.24.3"
tracing = "0.1.44"
tryhard = "0.5.2"
common = { version = "0.1.0", path = "../common" }
anyhow = "1.0.101"
anyhow = "1.0.102"
4 changes: 2 additions & 2 deletions matchdata-downloader/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ edition = "2024"
[dependencies]
cached = { version = "0.56.0", features = ["async", "tokio"] }
clickhouse = { version = "0.14.2", features = ["time", "test-util"] }
futures = "0.3.31"
futures = "0.3.32"
reqwest = { version = "0.13.2", features = ["stream"] }
serde = { version = "1.0.228", features = ["derive"] }
tokio = { version = "1.49.0", features = ["rt-multi-thread", "macros"] }
tokio-util = { version = "0.7.18", features = ["io"] }
metrics = "0.24.3"
tracing = "0.1.44"
anyhow = "1.0.101"
anyhow = "1.0.102"
object_store = { version = "0.13.1", features = ["aws"] }
common = { version = "0.1.0", path = "../common" }
4 changes: 2 additions & 2 deletions salt-scraper/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ metrics = "0.24.3"
tracing = "0.1.44"
clickhouse = "0.14.2"
tryhard = "0.5.2"
anyhow = "1.0.101"
anyhow = "1.0.102"
common = { version = "0.1.0", path = "../common" }
futures = "0.3.31"
futures = "0.3.32"
reqwest = "0.13.2"
sqlx = { version = "0.8.6", features = ["postgres", "runtime-tokio"] }
2 changes: 1 addition & 1 deletion steam-profile-fetcher/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.1.0"
edition = "2021"

[dependencies]
anyhow = "1.0.101"
anyhow = "1.0.102"
clickhouse = "0.14.2"
common = { path = "../common" }
itertools = "0.14.0"
Expand Down
2 changes: 1 addition & 1 deletion update-assets-tables/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.1.0"
edition = "2024"

[dependencies]
anyhow = "1.0.101"
anyhow = "1.0.102"
clickhouse = "0.14.2"
common = { version = "0.1.0", path = "../common" }
metrics = "0.24.3"
Expand Down