Skip to content

Commit 6f9ac5e

Browse files
deps: Handle simple "breaking" updates
1 parent 6d8fb13 commit 6f9ac5e

File tree

2 files changed

+78
-60
lines changed

2 files changed

+78
-60
lines changed

Cargo.lock

+73-55
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ lyon = "1.0.1"
6060
# Images are compressed to in-memory lz4 blobs
6161
lz4_flex = "0.11.3"
6262
# Generic metrics facade for our metrics recording/emission infra
63-
metrics = "0.22.3"
63+
metrics = "0.24.0"
6464
# File event notifications for the live reloading feature
6565
notify = "6.1.1"
6666
once_cell = "1.20.2"
@@ -69,7 +69,7 @@ open = "5.3.0"
6969
# Some alternative atomics that are slightly more ergonoics than `std`'s
7070
parking_lot = "0.12.3"
7171
# Dead simple way to handle some async operations
72-
pollster = "0.3.0"
72+
pollster = "0.4.0"
7373
# Used to get a handle to the display, so that we can setup a clipboard
7474
raw-window-handle = "0.5.2"
7575
# SVG rendering
@@ -108,7 +108,7 @@ features = ["cargo", "derive"]
108108

109109
# Converts our markdown+html to pure HTML
110110
[dependencies.comrak]
111-
version = "0.24.1"
111+
version = "0.29.0"
112112
default-features = false
113113
features = ["shortcodes", "syntect"]
114114

@@ -132,7 +132,7 @@ features = ["serde"]
132132

133133
# Metrics helpers used for our custom metric logger
134134
[dependencies.metrics-util]
135-
version = "0.16.3"
135+
version = "0.18.0"
136136
default-features = false
137137
features = ["registry", "summary"]
138138

@@ -178,7 +178,7 @@ tempfile = "3.13.0"
178178
tiny_http = "0.12.0"
179179

180180
[target.'cfg(inlyne_tcp_metrics)'.dependencies]
181-
metrics-exporter-tcp = "0.9.0"
181+
metrics-exporter-tcp = "0.11.0"
182182

183183
[profile.release]
184184
strip = true

0 commit comments

Comments
 (0)