Skip to content

Commit 6de393d

Browse files
committed
fix warnings by bumping dependency on num-derive
lots of warnings were output about 'non-local imple definitions', which it seems can simply be fixed by updating from num-derive 0.3 to 0.4. note, num-derive 0.4 requires rustc 1.56+, but that's fine.
1 parent 78de5bb commit 6de393d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pulse-binding/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ rust-version = "1.63"
1616
libc = "0.2"
1717
bitflags = "1.2"
1818
num-traits = "0.2"
19-
num-derive = "0.3"
19+
num-derive = "0.4"
2020
libpulse-sys = { path = "../pulse-sys", version = "1.21", default-features = false }
2121

2222
[target.'cfg(windows)'.dependencies]

pulse-sys/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ rust-version = "1.63"
1717
[dependencies]
1818
libc = "0.2"
1919
num-traits = "0.2"
20-
num-derive = "0.3"
20+
num-derive = "0.4"
2121

2222
[target.'cfg(windows)'.dependencies]
2323
winapi = { version = "0.3", features = ["winsock2"], default-features = false }

0 commit comments

Comments
 (0)