-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
23 lines (22 loc) · 706 Bytes
/
Cargo.toml
File metadata and controls
23 lines (22 loc) · 706 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 = "redbcli"
version = "0.2.0"
edition = "2021"
authors = ["jokemanfire <hu.dingyang@zte.com.cn>"]
description = "RedbCLI is a command-line tool for managing and operating Redb databases. It provides various commands to create, delete, query, and edit database tables."
keywords = ["redb", "cli"]
repository = "https://github.com/jokemanfire/redbcli"
license = "MIT/Apache-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
include = [
"**/*.rs",
"Cargo.toml",
]
[dependencies]
clap = { version = "4", features = ["derive"] }
shlex = "1.3.0"
redb = "3.1"
serde_json = "1.0"
rustyline = "15.0.0"
tempfile = "3.14.0"
comfy-table = "7"