-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
78 lines (68 loc) · 2.02 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
[package]
name = "wd"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
debug = true
[dependencies]
# cursive = "0.19"
# cursive = { git = "https://github.com/gyscos/cursive", features=["ansi"]}
# log = "0.4.17"
memmap = "0.7.0"
# Using a local custom fork.
# Return naive datetimes in LocalTime rather than Utc
# Support 04:04:01.2323232 <-- non-integer-second naive timestamps
# dateparser="0.1.7"
lazy_static = "1.4.0"
chrono = "0.4.24"
# ansi_term = "0.12.1"
unicode-width = "0.1.5"
bstr = "1.0.0"
# env_logger = "0.9.0"
test-env-log = "0.2.8"
# regex = "0.2"
ratatui = {version = "0.21.0"}
# ratatui = {version = "0.20.0"}
crossterm = { version = "0.26.1", default-features = false, features = [
"event-stream",
] }
tokio = { version = "1.28.2", features = ["full"] }
tokio-stream = "0.1.14"
uuid = { version = "1.3.3", features = ["serde", "v4"] }
unicode-segmentation = "1.10.1"
anyhow = "1.0.71"
better-panic = "0.3.0"
clap = { version = "4.3.0", features = ["derive"] }
futures = "0.3.28"
tracing-macros = "0.0.0"
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
env_logger = "0.10.0"
directories = "5.0.1"
tui-logger = { version = "0.9.2", default-features = false, features = [
"ratatui-support",
"tracing-support",
] }
colored = "2.0.0"
log = "0.4.19"
# version = "0.2.0",
# tui-textarea = { git = "https://github.com/rhysd/tui-textarea", features = ["ratatui-crossterm"], default-features=false }
tui-textarea = { git = "https://github.com/haydenflinner/tui-textarea", features = ["ratatui-crossterm", "search" ], default-features=false }
# drainrs dependencies
indextree = "4.5.0"
regex = "1"
# log = "0.4.17"
thiserror = "1.0"
json_in_type = "1.1.1"
rustc-hash = "1.1.0"
borrowme = "0.0.14"
[dev-dependencies]
criterion = { version = "0.4", features = ["html_reports"] }
chrono-tz = "0.8.4"
# drainrs
simple_logger = "4.0.0"
# criterion = "0.4"
[[bench]]
name = "my_benchmark"
harness = false