minisql/server/Cargo.toml
2024-02-05 23:36:28 +01:00

17 lines
505 B
TOML

[package]
name = "server"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = { workspace = true }
async-trait = { workspace = true }
clap = { workspace = true, features = ["derive"] }
rand = { workspace = true }
tokio = { workspace = true, features = ["io-util", "macros", "net", "rt-multi-thread"] }
minisql = { path = "../minisql" }
parser = { path = "../parser" }
proto = { path = "../proto" }