Skip to content

Commit 2624d8d

Browse files
committed
fix: toml
1 parent 1399b2a commit 2624d8d

File tree

2 files changed

+64
-5
lines changed

2 files changed

+64
-5
lines changed

src/rust/Cargo.lock

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

src/rust/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ encoding_rs = "0.8.5"
3030
[target.'cfg(target_os = "linux")'.dependencies]
3131
rsmpeg = { version = "0.14.2", default-features = false, features = ["ffmpeg6", "link_system_ffmpeg"], optional = true }
3232

33-
[target.'cfg("windows")'.dependencies]
33+
[target.'cfg(target_os = "windows")'.dependencies]
3434
rsmpeg = { version = "0.14.2", default-features = false, features = ["ffmpeg6", "link_system_ffmpeg"], optional = true }
3535

3636
# Fallback for other platforms (FreeBSD, etc.)
37-
[target.'cfg(not(any(target_os = "linux", "windows")))'.dependencies]
37+
[target.'cfg(not(any(target_os = "linux", target_os = "windows")))'.dependencies]
3838
rsmpeg = { version = "0.18.0", default-features = false, features = ["ffmpeg8", "link_system_ffmpeg"], optional = true }
3939

4040
[build-dependencies]

0 commit comments

Comments
 (0)