From d3fa9407a68bd3a501a5423f81c69b90ef625d81 Mon Sep 17 00:00:00 2001 From: Christopher Berner Date: Sun, 24 Sep 2023 11:48:02 -0700 Subject: [PATCH] Update dependencies --- Cargo.toml | 4 ++-- benches/syscall_benchmark.rs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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);