-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updates API to use bytes instead of String and bincode as storage and…
… serialization
- Loading branch information
Showing
17 changed files
with
245 additions
and
212 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "graus-db" | ||
version = "0.1.0" | ||
version = "0.2.0" | ||
authors = ["Ricardo Pallas Roman <[email protected]>"] | ||
description = "A high-performance, thread-safe key-value embedded data store." | ||
edition = "2018" | ||
|
@@ -13,10 +13,12 @@ documentation = "https://github.com/rpallas92/GrausDB" | |
readme = "README.md" | ||
|
||
[dependencies] | ||
bincode = "1.3.3" | ||
bytes = "1.8.0" | ||
crossbeam-skiplist = "0.1" | ||
log = "0.4.6" | ||
serde = { version = "1.0", features = ["derive"] } | ||
serde_json = "1.0" | ||
serde_bytes = "0.11.15" | ||
thiserror = "1.0" | ||
|
||
[dev-dependencies] | ||
|
@@ -27,4 +29,4 @@ walkdir = "2.2.7" | |
|
||
[[bench]] | ||
name = "graus_db_single_thread" | ||
harness = false | ||
harness = false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.