Skip to content

Commit cafa75e

Browse files
committed
Fix cargo clippy complaints
1 parent f35ea0a commit cafa75e

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

src/storage/src/lib.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
//! Materialize's storage layer.
1111
1212
#![warn(missing_docs)]
13+
// cargo clippy complains:
14+
// overflow evaluating the requirement `&itertools::ChunkBy<_, _, _>: std::iter::IntoIterator`
15+
#![recursion_limit = "256"]
1316

1417
pub mod decode;
1518
pub mod internal_control;

src/workspace-hack/Cargo.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -313,6 +313,7 @@ linux-raw-sys-274715c4dabd11b0 = { package = "linux-raw-sys", version = "0.9.4",
313313
linux-raw-sys-9fbad63c4bcf4a8f = { package = "linux-raw-sys", version = "0.4.15", default-features = false, features = ["elf", "errno", "general", "if_ether", "ioctl", "net", "netlink", "no_std", "prctl", "std", "xdp"] }
314314
miniz_oxide = { version = "0.8.9", default-features = false, features = ["simd", "with-alloc"] }
315315
native-tls = { version = "0.2.14", default-features = false, features = ["vendored"] }
316+
nix = { version = "0.30.1", default-features = false, features = ["feature"] }
316317
openssl = { version = "0.10.75", features = ["vendored"] }
317318
openssl-sys = { version = "0.9.111", default-features = false, features = ["vendored"] }
318319
ring = { version = "0.17.14", features = ["std"] }
@@ -329,6 +330,7 @@ linux-raw-sys-274715c4dabd11b0 = { package = "linux-raw-sys", version = "0.9.4",
329330
linux-raw-sys-9fbad63c4bcf4a8f = { package = "linux-raw-sys", version = "0.4.15", default-features = false, features = ["elf", "errno", "general", "if_ether", "ioctl", "net", "netlink", "no_std", "prctl", "std", "xdp"] }
330331
miniz_oxide = { version = "0.8.9", default-features = false, features = ["simd", "with-alloc"] }
331332
native-tls = { version = "0.2.14", default-features = false, features = ["vendored"] }
333+
nix = { version = "0.30.1", default-features = false, features = ["feature"] }
332334
openssl = { version = "0.10.75", features = ["vendored"] }
333335
openssl-sys = { version = "0.9.111", default-features = false, features = ["vendored"] }
334336
ring = { version = "0.17.14", features = ["std"] }
@@ -343,6 +345,7 @@ hyper-util = { version = "0.1.18", default-features = false, features = ["client
343345
idna = { version = "1.1.0" }
344346
miniz_oxide = { version = "0.8.9", default-features = false, features = ["simd", "with-alloc"] }
345347
native-tls = { version = "0.2.14", default-features = false, features = ["vendored"] }
348+
nix = { version = "0.30.1", default-features = false, features = ["feature"] }
346349
ring = { version = "0.17.14", features = ["std"] }
347350
rustix-d585fab2519d2d1 = { package = "rustix", version = "0.38.44", features = ["fs", "net", "process", "termios"] }
348351
rustix-dff4ba8e3ae991db = { package = "rustix", version = "1.0.7", features = ["event", "fs", "pipe", "process", "time"] }
@@ -356,6 +359,7 @@ hyper-util = { version = "0.1.18", default-features = false, features = ["client
356359
idna = { version = "1.1.0" }
357360
miniz_oxide = { version = "0.8.9", default-features = false, features = ["simd", "with-alloc"] }
358361
native-tls = { version = "0.2.14", default-features = false, features = ["vendored"] }
362+
nix = { version = "0.30.1", default-features = false, features = ["feature"] }
359363
ring = { version = "0.17.14", features = ["std"] }
360364
rustix-d585fab2519d2d1 = { package = "rustix", version = "0.38.44", features = ["fs", "net", "process", "termios"] }
361365
rustix-dff4ba8e3ae991db = { package = "rustix", version = "1.0.7", features = ["event", "fs", "pipe", "process", "time"] }

0 commit comments

Comments
 (0)