This repository has been archived by the owner on Jul 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
57 lines (50 loc) · 1.48 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
[package]
name = "logbook"
version = "0.1.0"
edition = "2021"
authors = ["Sudo-Ivan"]
license = "MIT"
description = "Logbook TUI App"
repository = "https://github.com/Ivans-Labs/logbook"
readme = "README.md"
categories = ["command-line-utilities"]
keywords = ["tui", "terminal-app", "logbook", "cli", "ui"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.75"
tokio = { version = "1.34.0", features = ["full"] }
serde = { version = "1.0.192", features = ["derive"]}
serde_json = "1.0.108"
log = "0.4.20"
chrono = { version = "0.4.31", features = ["serde"] }
async-trait = "0.1.74"
clap = { version = "4.4.8", features = ["derive"] }
crossterm = {version = "0.27.0", features = ["event-stream"]}
directories = "5.0.0"
simplelog = "0.12.1"
textwrap = "0.16.0"
thiserror = "1.0.50"
toml = "0.8.8"
sqlx = {version = "0.7.2", features = ["runtime-tokio-native-tls", "sqlite", "chrono"], optional = true}
futures-util = { version = "0.3", default-features = false }
scopeguard = "1.2.0"
git2 = { version = "0.18.1", default-features = false }
rayon = "1.8.0"
fuzzy-matcher = "0.3.7"
path-absolutize = "3.1.1"
tui-textarea = "0.3.1"
ratatui = { version = "0.24.0", features = ["all-widgets"]}
reqwest = "0.11.22"
[features]
default = ["json", "sqlite"]
json =[]
sqlite = ["dep:sqlx"]
[[bin]]
name = "logbook"
path = "src/main.rs"
[lib]
name = "backend"
path = "backend/src/lib.rs"
[[test]]
name = "backend"
path = "backend/tests/backend.rs"