Skip to content
This repository was archived by the owner on Aug 15, 2025. It is now read-only.

Commit 43c9ffb

Browse files
committed
chore: cargo-upgrades, add todo comment
1 parent 390e56c commit 43c9ffb

File tree

7 files changed

+28
-25
lines changed

7 files changed

+28
-25
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ tokio-tungstenite = { version = "0.26.2", features = [
1010
"rustls-tls-webpki-roots",
1111
"url",
1212
] }
13-
sqlx = "0.8.5"
13+
sqlx = "0.8.6"
1414
sqlx-pg-uint = { version = "0.10.1", features = ["serde"] }

crates/sonata

crates/symfonia-api/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ edition = "2024"
88
[dependencies]
99
base64 = "0.22.1"
1010
bigdecimal = "0.4.8"
11-
bitflags = { version = "2.9.0", features = ["serde"] }
11+
bitflags = { version = "2.9.1", features = ["serde"] }
1212
chrono = { version = "0.4.41", features = ["serde"] }
1313
futures = "0.3.31"
1414
hostname = "0.4.1"
@@ -23,11 +23,11 @@ log4rs = { version = "1.3.0", features = [
2323
] }
2424
num-bigint = "0.4.6"
2525
num-traits = "0.2.19"
26-
openssl = "0.10.72"
27-
poem = "3.1.9"
26+
openssl = "0.10.73"
27+
poem = "3.1.11"
2828
rand = "0.8.5"
2929
regex = "1.11.1"
30-
reqwest = { version = "0.12.15", default-features = false, features = [
30+
reqwest = { version = "0.12.20", default-features = false, features = [
3131
"http2",
3232
"macos-system-configuration",
3333
"charset",
@@ -43,7 +43,7 @@ sqlx = { workspace = true, features = [
4343
"any",
4444
] }
4545
thiserror = "1.0.69"
46-
tokio = { version = "1.44.2", features = ["full"] }
46+
tokio = { version = "1.45.1", features = ["full"] }
4747
sentry = { version = "0.34.0", default-features = false, features = [
4848
"backtrace",
4949
"contexts",
@@ -63,9 +63,9 @@ tokio-tungstenite = { version = "0.23.1", features = [
6363
"tokio-rustls",
6464
] }
6565
pubserve = { version = "1.1.0", features = ["async", "send"] }
66-
parking_lot = { version = "0.12.3", features = ["deadlock_detection"] }
66+
parking_lot = { version = "0.12.4", features = ["deadlock_detection"] }
6767
sqlx-pg-uint = { workspace = true }
68-
toml = "0.8.22"
68+
toml = "0.8.23"
6969
argon2 = "0.5.3"
7070

7171
[profile.release]

crates/symfonia-gateway/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ edition = "2024"
88
[dependencies]
99
base64 = "0.22.1"
1010
bigdecimal = "0.4.8"
11-
bitflags = { version = "2.9.0", features = ["serde"] }
11+
bitflags = { version = "2.9.1", features = ["serde"] }
1212
chrono = { version = "0.4.41", features = ["serde"] }
1313
futures = "0.3.31"
1414
jsonwebtoken = "9.3.1"
@@ -22,11 +22,11 @@ log4rs = { version = "1.3.0", features = [
2222
] }
2323
num-bigint = "0.4.6"
2424
num-traits = "0.2.19"
25-
openssl = "0.10.72"
26-
poem = "3.1.9"
25+
openssl = "0.10.73"
26+
poem = "3.1.11"
2727
rand = "0.8.5"
2828
regex = "1.11.1"
29-
reqwest = { version = "0.12.15", default-features = false, features = [
29+
reqwest = { version = "0.12.20", default-features = false, features = [
3030
"http2",
3131
"macos-system-configuration",
3232
"charset",
@@ -42,16 +42,16 @@ sqlx = { workspace = true, features = [
4242
"any",
4343
] }
4444
thiserror = "1.0.69"
45-
tokio = { version = "1.44.2", features = ["full"] }
45+
tokio = { version = "1.45.1", features = ["full"] }
4646
chorus = { workspace = true }
4747
util = { path = "../util", version = "0" }
4848
serde_path_to_error = "0.1.17"
4949
percent-encoding = "2.3.1"
5050
hex = "0.4.3"
5151
tokio-tungstenite = { workspace = true }
5252
pubserve = { version = "1.1.0", features = ["async", "send"] }
53-
parking_lot = { version = "0.12.3", features = ["deadlock_detection"] }
54-
toml = "0.8.22"
53+
parking_lot = { version = "0.12.4", features = ["deadlock_detection"] }
54+
toml = "0.8.23"
5555
argon2 = "0.5.3"
5656

5757
[profile.release]

crates/symfonia/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ edition = "2024"
55
license = "MPL-2.0"
66

77
[dependencies]
8-
clap = { version = "4.5.37", features = ["derive"] }
8+
clap = { version = "4.5.40", features = ["derive"] }
99
lazy_static = "1.5.0"
1010
log = "0.4.27"
1111
log4rs = "1.3.0"
1212
serde = { version = "1.0.219", features = ["derive"] }
13-
tokio = { version = "1.44.2", features = ["macros", "rt-multi-thread"] }
14-
toml = "0.8.22"
13+
tokio = { version = "1.45.1", features = ["macros", "rt-multi-thread"] }
14+
toml = "0.8.23"
1515
util = { version = "0.1.0", path = "../util" }
1616
sqlx = { workspace = true }
1717
symfonia-api = { version = "0.1.0", path = "../symfonia-api" }

crates/util/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,22 +21,22 @@ jsonwebtoken = "9.3.1"
2121
log = "0.4.27"
2222
log4rs = "1.3.0"
2323
num-traits = "0.2.19"
24-
parking_lot = "0.12.3"
25-
poem = { version = "3.1.9", optional = true }
24+
parking_lot = "0.12.4"
25+
poem = { version = "3.1.11", optional = true }
2626
pubserve = "1.1.0"
2727
rand = "0.8.5"
28-
reqwest = "0.12.15"
28+
reqwest = "0.12.20"
2929
secrecy = "0.10.3"
3030
serde = "1.0.219"
3131
serde_json = "1.0.140"
3232
serde_path_to_error = "0.1.17"
33-
serde_with = "3.12.0"
33+
serde_with = "3.13.0"
3434
sqlx = { workspace = true }
3535
sqlx-pg-uint = { workspace = true }
3636
thiserror = "2.0.12"
37-
tokio = { version = "1.44.2", features = ["net", "rt-multi-thread", "sync"] }
37+
tokio = { version = "1.45.1", features = ["net", "rt-multi-thread", "sync"] }
3838
tokio-tungstenite = { workspace = true }
39-
toml = "0.8.22"
39+
toml = "0.8.23"
4040
zeroize = { version = "1.8.1", features = ["derive"] }
4141

4242
[dev-dependencies]

crates/util/src/gateway/mod.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
// License, v. 2.0. If a copy of the MPL was not distributed with this
33
// file, You can obtain one at https://mozilla.org/MPL/2.0/.
44

5+
// TODO: symfonia-gateway should include a `lib` target. Files in this directory
6+
// should then be moved there.
7+
58
use std::{
69
collections::{HashMap, HashSet},
710
fmt::Display,

0 commit comments

Comments
 (0)