First attempt at storage engine

This commit is contained in:
Yuriy Dupyn 2024-02-01 03:02:12 +01:00
parent ee757c7ca2
commit bd3fdb266f
6 changed files with 514 additions and 1 deletions

10
storage_engine/Cargo.toml Normal file
View file

@ -0,0 +1,10 @@
[package]
name = "storage_engine"
version = "0.1.0"
edition = "2021"
[dependencies]
bincode = "2.0.0-rc.3"
tokio = { version = "1.34.0", features = ["full"] }
async-trait = "0.1.74"
thiserror = "1.0.50"