Skip to content

Commit 0501a67

Browse files
committed
Remove test-log dep
1 parent 12b6897 commit 0501a67

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ rand = "0.9.1"
2727
walkdir = "2"
2828
serde_json = "1.0.140"
2929
tempfile = "3.19.1"
30-
test-log = { version = "0.2.18", features = ["trace", "color"] }
3130

3231
[lib]
3332
bench = false

benches/crud_benchmarks.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ fn bench_account_reads(c: &mut Criterion) {
124124

125125
// Read its chunk of addresses
126126
for addr in thread_addresses {
127-
let a = tx.get_account(addr.clone()).unwrap();
127+
let a = tx.get_account(&addr).unwrap();
128128
assert!(a.is_some());
129129
}
130130

src/overlay.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,6 @@ impl OverlayState {
267267
///
268268
/// This operation is O(1) and creates no allocations. The returned OverlayState
269269
/// shares the same underlying Arc<[...]> data and only tracks different bounds.
270-
/// Perfect for thread pool scenarios where each thread processes a disjoint range.
271270
pub fn sub_slice(&self, start: usize, end: usize) -> OverlayState {
272271
let current_len = self.len();
273272
let end = end.min(current_len);

0 commit comments

Comments
 (0)