-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (40 loc) · 1.12 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
[package]
name = "gw-bin"
description = "Watch git repositories, pull changes and run commands on the new files"
version = "0.4.1"
license = "MIT"
edition = "2021"
documentation = "https://github.com/daniel7grant/gw"
repository = "https://github.com/daniel7grant/gw"
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/v{ version }/{ name }_{ target }{ archive-suffix }"
bin-dir = "{ bin }{ binary-ext }"
pkg-fmt = "zip"
[dependencies]
dirs = "6"
duct = "0.13.7"
duct_sh = "0.13.7"
duration-string = "0.5.2"
git2 = "0.20.0"
gumdrop = "0.8.1"
log = "0.4.20"
mockall = "0.13.0"
nix = { version = "0.29.0", features = ["signal"] }
shlex = "1.3.0"
signal-hook = "0.3.17"
simplelog = "0.12.2"
thiserror = "2.0.3"
time = "0.3.36"
tiny_http = "0.12.0"
[target.'cfg(any(target_env = "musl", target_arch = "arm", target_arch = "aarch64"))'.dependencies]
git2 = { version = "0.20.0", features = ["vendored-libgit2", "vendored-openssl"] }
[dev-dependencies]
duct = "0.13.7"
rand = "0.9.0"
testing_logger = "0.1.1"
ureq = { version = "3.0.2", default-features = false }
[profile.release]
strip = true
[[bin]]
name = "gw"
path = "src/main.rs"