Skip to content

Commit e33dd21

Browse files
committed
chore: bump most dependencies across project to latest
1 parent 33f27da commit e33dd21

16 files changed

Lines changed: 2605 additions & 2534 deletions

File tree

camera_hub/Cargo.lock

Lines changed: 294 additions & 299 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

camera_hub/Cargo.toml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ telemetry = [] # todo: dep on the motion_ai crate
1414

1515
[dependencies]
1616
docopt = "~1.1"
17-
env_logger = "0.11.8"
18-
log = { version = "0.4.4", optional = true }
17+
env_logger = "0.11.9"
18+
log = { version = "0.4.29", optional = true }
1919
serde = "1.0"
2020
serde_derive = "1.0"
2121
rand="0.8"
@@ -24,32 +24,32 @@ secluso-client-lib = { path = "../client_lib", features = ["http_client"] }
2424
secluso-client-server-lib = { path = "../client_server_lib" }
2525
chrono = "0.4"
2626
base64 = "0.22.1"
27-
serde-xml-rs = "0.5"
27+
serde-xml-rs = "0.8"
2828
sha1 = "0.10"
29-
qrcode = "0.14.0"
30-
image = "0.25.1"
29+
qrcode = "0.14.1"
30+
image = "0.25.10"
3131
openmls = { git = "https://github.com/openmls/openmls", rev = "openmls-v0.8.0" }
3232
openmls_traits = { git = "https://github.com/openmls/openmls", rev = "openmls-v0.8.0" }
3333
openmls_rust_crypto = { git = "https://github.com/openmls/openmls", rev = "openmls-v0.8.0" }
34-
retina = "0.4.10"
35-
tokio = { version = "1.5.0", features = ["fs", "io-util", "macros", "rt-multi-thread"] }
36-
url = "2.2.1"
37-
anyhow = "1.0.41"
38-
bytes = "1.0.1"
39-
futures = "0.3.14"
34+
retina = "0.4.19"
35+
tokio = { version = "1.50.0", features = ["fs", "io-util", "macros", "rt-multi-thread"] }
36+
url = "2.5.8"
37+
anyhow = "1.0.102"
38+
bytes = "1.11.1"
39+
futures = "0.3.32"
4040
serde_yaml2 = "0.1.3"
4141
ndarray = { version="=0.15.6", features = ["rayon"]} # This has to be 0.15 to support linfa
42-
crossbeam-channel = "0.5.14"
43-
cfg-if = "1.0.0"
44-
reqwest = { version = "0.11", default-features = false, features = ["blocking", "json"], optional = true }
42+
crossbeam-channel = "0.5.15"
43+
cfg-if = "1.0.4"
44+
reqwest = { version = "0.13", default-features = false, features = ["blocking", "json"], optional = true }
4545
serde_json = { version = "1.0" }
4646
regex = "1"
4747

4848
# IP Specific Dependencies
49-
rpassword = {version = "5.0", optional = true }
49+
rpassword = {version = "7.4", optional = true }
5050
http-auth = { version = "0.1", optional = true }
51-
linfa = { version = "0.7.1", optional = true }
52-
linfa-clustering = { version = "0.7.1", optional = true }
51+
linfa = { version = "0.8.1", optional = true }
52+
linfa-clustering = { version = "0.8.1", optional = true }
5353

5454
# Raspberry Specific Dependencies
5555
secluso-motion-ai = { path = "../motion_ai/pipeline", optional = true }

client_lib/Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ http_client = ["dep:reqwest", "dep:base64"]
1111

1212
[dependencies]
1313
docopt = "~1.1"
14-
env_logger = "0.11.8"
15-
log = { version = "0.4.4", optional = true }
14+
env_logger = "0.11.9"
15+
log = { version = "0.4.29", optional = true }
1616
mio = { version = "0.8", features = ["net", "os-poll"] }
1717
serde = "1.0"
1818
serde_derive = "1.0"
@@ -23,12 +23,12 @@ openmls_rust_crypto = { git = "https://github.com/openmls/openmls", rev = "openm
2323
openmls_libcrux_crypto = { git = "https://github.com/openmls/openmls", rev = "openmls-v0.8.0" }
2424
openmls_memory_storage = { git = "https://github.com/openmls/openmls", rev = "openmls-v0.8.0", features = ["persistence"] }
2525
openmls_basic_credential = { git = "https://github.com/openmls/openmls", rev = "openmls-v0.8.0" }
26-
bincode = "1.2.1"
27-
reqwest = { version = "0.11", default-features = false, features = ["blocking", "multipart", "rustls-tls"], optional = true }
26+
bincode = "1.3.3"
27+
reqwest = { version = "0.13", default-features = false, features = ["blocking", "multipart"], optional = true }
2828
base64 = { version = "0.22.1", optional = true }
29-
base64-url = {version = "3.0.2"}
30-
anyhow = "^1.0.64" # Locked to this version due to flutter_rust_bridge usage in app
31-
serde_json = "1.0.140"
29+
base64-url = {version = "3.0.3"}
30+
anyhow = "^1.0.102" # Locked to this version due to flutter_rust_bridge usage in app
31+
serde_json = "1.0.149"
3232
rand = "0.8"
33-
qrcode = "0.14.0"
34-
image = "0.25.1"
33+
qrcode = "0.14.1"
34+
image = "0.25.10"

client_server_lib/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2021"
55
authors = ["Ardalan Amiri Sani <arrdalan@gmail.com>"]
66

77
[dependencies]
8-
anyhow = "^1.0.64" # Locked to this version due to flutter_rust_bridge usage in app
8+
anyhow = "^1.0.102" # Locked to this version due to flutter_rust_bridge usage in app
99
rand = "0.8"
1010
serde = "1.0"
11-
serde_json = { version = "1.0" }
11+
serde_json = { version = "1.0" }

0 commit comments

Comments
 (0)