Skip to content

Commit b2794e1

Browse files
fix(deps): update rust crate derive_more to v2 (#889)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 4c4ede5 commit b2794e1

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

Cargo.lock

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

crates/components/connections/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ edition = "2021"
88
anyhow = "1"
99
tracing = "0.1"
1010
dashmap = "6"
11-
derive_more = { version = "1.0", features = ["from"] }
11+
derive_more = { version = "2.0", features = ["from"] }
1212
mizer-protocol-citp = { path = "./protocols/citp" }
1313
mizer-protocol-dmx = { path = "./protocols/dmx" }
1414
mizer-protocol-midi = { path = "./protocols/midi" }

crates/components/connections/devices/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ mizer-protocol-pro-dj-link = { path = "../protocols/pro-dj-link" }
2020
tokio = { version = "1.37", features = ["sync", "rt"] }
2121
tokio-stream = "0.1"
2222
futures = "0.3"
23-
derive_more = { version = "1.0", features = ["from"] }
23+
derive_more = { version = "2.0", features = ["from"] }
2424
profiling = "1.0"

crates/mizer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ tracing = ["profiling/profile-with-tracy", "mizer-util/tracing"]
2626
oslog = ["tracing-oslog"]
2727

2828
[dependencies]
29-
derive_more = { version = "1.0", features = ["from"] }
29+
derive_more = { version = "2.0", features = ["from"] }
3030
directories-next = "2.0"
3131
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
3232
tracing-appender = "0.2"

crates/runtime/commander/executor/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ edition = "2021"
77
anyhow = "1"
88
serde = { version = "1", features = ["derive"] }
99
serde_json = "1"
10-
derive_more = { version = "1.0", features = ["from"] }
10+
derive_more = { version = "2.0", features = ["from"] }
1111
mizer-console = { path = "../../../components/console" }
1212
mizer-commander = { path = ".." }
1313
mizer-processing = { path = "../../processing" }

crates/runtime/pipeline/nodes/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ mizer-timecode-nodes = { path = "timecode" }
4848
mizer-transport-nodes = { path = "transport" }
4949
mizer-vector-nodes = { path = "vector" }
5050
mizer-ui-nodes = { path = "ui" }
51-
derive_more = { version = "1.0", features = ["from"] }
51+
derive_more = { version = "2.0", features = ["from"] }
5252
dashmap = "6.0"
5353

5454
[dev-dependencies]

crates/runtime/pipeline/nodes/data/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ edition = "2021"
77
[dependencies]
88
anyhow = "1"
99
serde = { version = "1", features = ["derive"] }
10-
derive_more = { version = "1.0", features = ["from"] }
10+
derive_more = { version = "2.0", features = ["from"] }
1111
mizer-node = { path = "../../node" }
1212
mizer-util = { path = "../../../../util" }
1313
mizer-media = { path = "../../../../components/media" }

0 commit comments

Comments
 (0)