minisql/client/Cargo.toml
Maxim Svistunov e80beaf160 Add the port and host CLI arguments
Improve args and add them to --help

Remove unnecessary unwraps
2024-01-28 19:58:43 +01:00

14 lines
No EOL
393 B
TOML

[package]
name = "client"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1.35.1", features = ["full"] }
anyhow = "1.0.76"
proto = { path = "../proto" }
minisql = { path = "../minisql" }
parser = { path = "../parser" }
clap = { version = "4.4.18", features = ["derive"] }