-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
75 lines (68 loc) · 1.84 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
[[bin]]
name = "vault-tasks"
path = "src/main.rs"
[build-dependencies]
anyhow = "1.0.95"
vergen-gix = {version = "1.0.6", features = ["build", "cargo"]}
[dependencies]
better-panic = "0.3.0"
clap = {version = "4.5.28", features = [
"derive",
"cargo",
"wrap_help",
"unicode",
"string",
"unstable-styles"
]}
config = "0.15.7"
crossterm = {version = "0.28.1", features = ["serde", "event-stream"]}
derive_deref = "1.1.1"
directories = "6.0.0"
futures = "0.3.31"
human-panic = "2.0.2"
lazy_static = "1.5.0"
libc = "0.2.169"
ratatui = {version = "0.29.0", features = ["serde", "macros", "widget-calendar"]}
signal-hook = "0.3.17"
strip-ansi-escapes = "0.2.1"
tokio = {version = "1.43.0", features = ["full"]}
tokio-util = "0.7.13"
tracing-error = "0.2.1"
tracing-subscriber = {version = "0.3.19", features = ["env-filter", "serde"]}
chrono = {version="0.4.39"}
tui-widget-list = "0.13.2"
tui-input = "0.11.1"
edit = "0.1.5"
tui-scrollview = "=0.5.0"
toml = "0.8.19"
color-eyre = "0.6.3"
serde = {version = "1.0.217", features = ["derive"]}
tracing = "0.1.41"
pretty_assertions = "1.4.1"
strum = {version = "0.26.3", features = ["derive"]}
strum_macros = "0.26.4"
notify-rust = "4.11.4"
lexical-sort = "0.3.1"
winnow = "0.7.1"
time = "0.3.37"
ratskin = "0.2.0"
[dev-dependencies]
insta = {version = "1.42.1", features = ["yaml"]}
[package]
name = "vault-tasks"
description = "TUI Markdown Task Manager"
build = "build.rs"
categories = ["command-line-utilities", "visualization"]
keywords = ["markdown", "task-manager", "productivity", "tui", "obsidian"]
version = "0.9.0"
edition = "2021"
repository = "https://github.com/louis-thevenet/vault-tasks"
authors = ["Louis Thevenet <[email protected]>"]
license = "MIT"
[profile.dev]
[profile.dev.package]
insta.opt-level = 3
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"