minisql/minisql/Cargo.toml
2024-02-05 23:42:06 +01:00

20 lines
598 B
TOML

[package]
name = "minisql"
version = "0.1.0"
edition = "2021"
rust-version = "1.74"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = { workspace = true }
async-trait = { workspace = true }
bimap = { workspace = true, features = ["serde"] }
bincode = { workspace = true }
serde = { workspace = true, features = ["derive", "rc"] }
serde_json = "1.0.113"
thiserror = { workspace = true }
tokio = { workspace = true, features = ["macros", "sync"] }
proto = { path = "../proto" }
storage_engine = { path = "../storage_engine" }