Skip to content

Commit 1694a00

Browse files
committed
chore: v0.3.1
fix rogue print
1 parent 3cd62d4 commit 1694a00

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "forceps"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
authors = ["Jacob Parker <[email protected]>"]
55
description = "An easy-to-use async & on-disk database"
66
readme = "README.md"

src/mem_cache.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ impl MemCacheInner {
4848
let updated_sz = self.current.fetch_add(v_sz, Ordering::SeqCst) + v_sz;
4949

5050
// if the new size is greater than the cap, start evicting items
51-
println!("{} / {}", updated_sz, self.cap);
5251
if updated_sz > self.cap {
5352
self.evict(&mut guard, updated_sz);
5453
}

0 commit comments

Comments
 (0)