-
-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathCargo.toml
More file actions
23 lines (21 loc) · 534 Bytes
/
Copy pathCargo.toml
File metadata and controls
23 lines (21 loc) · 534 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "nexum_cli"
version = "0.4.0"
edition = "2021"
license = "MIT"
authors = ["Aviral Garg"]
repository = "https://github.com/aviralgarg05/NexumDB"
description = "Command-line interface for NexumDB"
keywords = ["database", "cli", "sql"]
[[bin]]
name = "nexum"
path = "src/main.rs"
[dependencies]
nexum_core = { path = "../nexum_core" }
anyhow = { workspace = true }
tokio = { workspace = true }
colored = "3.1"
comfy-table = "7.1"
indicatif = "0.18"
clap = { version = "4.6", features = ["derive"] }
serde_json = "1.0"