Crates.io | dbutils |
lib.rs | dbutils |
version | |
source | src |
created_at | 2023-03-24 15:37:59.842499 |
updated_at | 2024-11-07 21:04:08.044067 |
description | Utils for developing databases |
homepage | https://github.com/al8n/layer0 |
repository | https://github.com/al8n/layer0/tree/main/dbutils |
max_upload_size | |
id | 819380 |
Cargo.toml error: | TOML parse error at line 18, column 1 | 18 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
Default
[dependencies]
dbutils = "0.9"
Using in no_std
[dependencies]
dbutils = { version = "0.9", default-features = false }
Using with alloc
only
[dependencies]
dbutils = { version = "0.9", default-features = false, features = ["alloc"] }
rarena-allocator
: Lock-free ARENA allocator which can be used in both memory and on-disk.orderwal
: A generic-purpose, atomic, ordered, zero-copy, Write-Ahead Log implementation for Rust.skl
: A lock-free thread-safe concurrent ARENA based (heap backend or memory map backend) skiplist implementation which helps develop MVCC memtable for LSM-Tree.valog
: A lock-free, generic, lightweight value log for WiscKey or Bitcask architecture databases.