-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
51 lines (48 loc) · 1.37 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
[package]
name = "pitchfork-cli"
description = "Daemons with DX"
license = "MIT"
version = "0.1.5"
edition = "2021"
homepage = "https://pitchfork.jdx.dev"
repository = "https://github.com/jdx/pitchfork"
documentation = "https://pitchfork.jdx.dev"
include = [
"src/**/*.rs",
"assets/**/*",
"/pitchfork-extras.usage.kdl",
]
[[bin]]
name = "pitchfork"
path = "src/main.rs"
[dependencies]
chrono = "0.4"
clap = { version = "4", features = ["derive"] }
clap_usage = "1"
comfy-table = "7.1.3"
console = "0.15"
dirs = "5"
duct = "0.13"
exponential-backoff = "2"
indexmap = { version = "2", features = ["serde"] }
interprocess = { version = "2", features = ["tokio"] }
itertools = "0.13"
log = {version="0.4", features=["serde"]}
miette = { version = "7", features = ["fancy"] }
notify = { version = "7", features = ["macos_fsevent"] }
notify-debouncer-full = "0.4"
once_cell = "1"
regex = "1"
rev_lines = "0.3"
rmp-serde = "1"
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1", features = ["indexmap"] }
shell-words = "1.1.0"
strum = { version = "0.26", features = ["derive"] }
sysinfo = "0.33"
tokio = { version = "1", features = ["full"] }
toml = { version = "0.8", features = ["indexmap", "preserve_order"] }
uuid = { version = "1", features = ["v4", "fast-rng"] }
xx = { version = "2", features = ["fslock", "hash"] }
[target.'cfg(unix)'.dependencies]
exec = "0.3"