-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (37 loc) · 1.13 KB
/
Cargo.toml
File metadata and controls
39 lines (37 loc) · 1.13 KB
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
[workspace]
resolver = "2"
members = ["crates/neomake"]
[workspace.package]
version = "0.0.0"
edition = "2021"
license = "MIT"
authors = ["cchexcode <alexanderh.weber@outlook.com>"]
repository = "https://github.com/cchexcode/neomake"
homepage = "https://github.com/cchexcode/neomake"
description = "A more powerful alternative to Makefiles."
keywords = ["make", "cli", "task", "runner"]
categories = ["command-line-utilities"]
[workspace.dependencies]
tokio = { version = "1", features = ["rt", "rt-multi-thread", "macros", "process", "io-util", "time", "sync"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
anyhow = "1"
clap = { version = "4", features = ["derive", "env"] }
clap_complete = "4"
clap_mangen = "0.2"
clap-markdown = "0.1"
schemars = "0.8"
handlebars = "6"
itertools = "0.14"
threadpool = "1"
fancy-regex = "0.14"
notify = "8"
signal-hook = "0.3"
flume = "0.11"
parking_lot = "0.12"
walkdir = "2"
crossterm = { version = "0.28", features = ["event-stream", "use-dev-tty", "libc"] }
ratatui = "0.29"
futures = "0.3"
jiff = { version = "0.2", features = ["serde"] }
hocon = { version = "0.9", features = ["serde-support"] }