-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
82 lines (70 loc) · 1.8 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[package]
name = "ratisui"
version = "0.3.1"
edition = "2021"
authors = ["honhimw <honhimw@outlook.com>"]
rust-version = "1.83.0"
build = "build.rs"
[workspace]
members = ["ratisui-core", "ratisui-macros"]
[workspace.dependencies]
anyhow = "1"
log = "0.4"
redis = "0.28"
serde = "1"
serde_json = "1"
tokio = "1"
tree-sitter = "0.24"
crossbeam-channel = "0.5"
strum = "0.27.0"
[dependencies]
anyhow = { workspace = true }
log = { workspace = true }
bitflags = "2"
ratatui = { version = "0.29", features = [
"unstable-rendered-line-info",
"unstable-widget-ref",
"macros",
] }
ratatui-macros = "0.6.0"
tui-textarea = { version = "0.7", features = ["crossterm"] }
throbber-widgets-tui = "0.8"
tui-tree-widget = "0.23.0"
tui-logger = "0.14"
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
crossbeam-channel = { workspace = true }
redis = { workspace = true, features = [
"tokio-comp",
"tokio-rustls-comp",
"cluster-async",
"json"
] }
strum = { workspace = true, features = ["derive"] }
uuid = { version = "1.11.0", features = ["v4"] }
tokio = { workspace = true, features = ["full"] }
chronoutil = "0.2.7"
itertools = "0.14.0"
unicode-width = "0.2.0"
substring = "1"
once_cell = "1"
futures = "0.3"
ratisui-core = { path = "ratisui-core" }
#[build-dependencies]
#cc = "*"
[dev-dependencies]
ron = { version = "0.8.1", features = ["default"] }
deadpool-redis = { git = "https://github.com/honhimW/deadpool.git", branch = "logging", package = "deadpool-redis", features = [
"serde",
"cluster",
"log",
] }
jaded = { version = "0.5.0", features = ["serde"] }
protobuf = { version = "3.7.1" }
tracing = { version = "0.1.41", features = ["log"] }
tracing-subscriber = "0.3.19"
[profile.release]
lto = true
opt-level = "z"
codegen-units = 1
strip = "debuginfo"