17 lines
466 B
TOML
17 lines
466 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]
|
|
tokio = { workspace = true, features = ["full"] }
|
|
anyhow = { workspace = true }
|
|
clap = { workspace = true, features = ["derive"] }
|
|
async-trait = { workspace = true }
|
|
rand = { workspace = true }
|
|
|
|
minisql = { path = "../minisql" }
|
|
parser = { path = "../parser" }
|
|
proto = { path = "../proto" }
|