File tree 2 files changed +6
-4
lines changed
2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -60,6 +60,8 @@ impl MockServer {
60
60
let mut set = JoinSet :: new ( ) ;
61
61
62
62
loop {
63
+ // https://github.com/apache/arrow-rs/issues/6122
64
+ #[ allow( clippy:: incompatible_msrv) ]
63
65
let ( stream, _) = tokio:: select! {
64
66
conn = listener. accept( ) => conn. unwrap( ) ,
65
67
_ = & mut rx => break ,
Original file line number Diff line number Diff line change 39
39
//! # Highlights
40
40
//!
41
41
//! 1. A high-performance async API focused on providing a consistent interface
42
- //! mirroring that of object stores such as [S3]
42
+ //! mirroring that of object stores such as [S3]
43
43
//!
44
44
//! 2. Production quality, leading this crate to be used in large
45
- //! scale production systems, such as [crates.io] and [InfluxDB IOx]
45
+ //! scale production systems, such as [crates.io] and [InfluxDB IOx]
46
46
//!
47
47
//! 3. Support for advanced functionality, including atomic, conditional reads
48
- //! and writes, vectored IO, bulk deletion, and more...
48
+ //! and writes, vectored IO, bulk deletion, and more...
49
49
//!
50
50
//! 4. Stable and predictable governance via the [Apache Arrow] project
51
51
//!
98
98
//! * Methods map directly to object store APIs, providing both efficiency and predictability
99
99
//! * Abstracts away filesystem and operating system specific quirks, ensuring portability
100
100
//! * Allows for functionality not native to filesystems, such as operation preconditions
101
- //! and atomic multipart uploads
101
+ //! and atomic multipart uploads
102
102
//!
103
103
//! This crate does provide [`BufReader`] and [`BufWriter`] adapters
104
104
//! which provide a more filesystem-like API for working with the
You can’t perform that action at this time.
0 commit comments