-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
49 lines (45 loc) · 1.43 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[package]
name = "zhobo"
version = "0.1.0"
authors = ["Kyoto7250 <[email protected]>"]
edition = "2021"
license = "MIT"
homepage = "https://github.com/kyoto7250/zhobo"
repository = "https://github.com/kyoto7250/zhobo"
readme = "README.md"
description = "A cross-platform TUI database viewer written in Rust. Personally maintained gobang project"
exclude = ["resources/"]
keywords = ["database", "cli", "Rust", "tui", "terminal"]
categories = ["command-line-utilities"]
[dependencies]
ratatui = { version = "0.26.3", features = ["unstable-rendered-line-info"] }
crossterm = "0.27.0"
anyhow = "1.0.86"
unicode-width = "0.1.13"
sqlx = { version = "0.7.4", features = ["mysql", "postgres", "sqlite", "chrono", "rust_decimal", "runtime-tokio-rustls", "json"], default-features = false }
chrono = "0.4.38"
tokio = { version = "1.37.0", features = ["full"] }
futures = "0.3.30"
serde_json = "1.0.117"
thiserror = "1.0.61"
serde = "1.0.203"
toml = "0.8.14"
strum = "0.26.2"
strum_macros = "0.26.4"
easy-cast = "0.5.2"
async-trait = "0.1.80"
itertools = "0.13.0"
rust_decimal = "1.35"
dirs-next = "2.0.0"
clap = "4.5.7"
structopt = "0.3.26"
syntect = { version = "5.0", default-features = false, features = ["metadata", "default-fancy"]}
unicode-segmentation = "1.11.0"
ron = "0.8.1"
[target.'cfg(all(target_family="unix",not(target_os="macos")))'.dependencies]
which = "6.0.1"
[dev-dependencies]
pretty_assertions = "1.4.0"
[profile.release]
strip = true
lto = true