diff --git a/Cargo.toml b/Cargo.toml index c8ebc17b..d47b2908 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -38,10 +38,10 @@ sanakirja = "1.3.3" sled = "0.34.7" rocksdb = "0.21.0" libc = "0.2.99" -comfy-table = "6.1.0" +comfy-table = "7.0.1" [target.'cfg(target_os = "linux")'.dev-dependencies] -io-uring = "0.5.1" +io-uring = "0.6.2" [features] # This feature is still experimental, and is not considered stable diff --git a/benches/syscall_benchmark.rs b/benches/syscall_benchmark.rs index 09aa9816..4abcde93 100644 --- a/benches/syscall_benchmark.rs +++ b/benches/syscall_benchmark.rs @@ -168,7 +168,7 @@ fn uring_bench(path: &Path) { }; let read_e = io_uring::opcode::Readv::new(io_uring::types::Fd(file.as_raw_fd()), &iovec, 1) - .offset(offset as i64) + .offset(offset as u64) .build() .user_data(buffer_index as u64);