This repository was archived by the owner on Apr 14, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (47 loc) · 1.21 KB
/
Cargo.toml
File metadata and controls
55 lines (47 loc) · 1.21 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[package]
name = "git-find"
version = "0.7.0"
authors = ["David Bernard <david.bernard.31@gmail.com>"]
description = "A tool (cli & lib) to find local git repositories."
readme = "README.md"
license = "CC0-1.0"
keywords = ["git", "find", "search"]
categories = ["command-line-utilities", "development-tools"]
repository = "https://github.com/davidB/git-find"
homepage = "https://github.com/davidB/git-find"
edition = "2018"
[badges.appveyor]
repository = "davidB/git-find"
[badges.travis-ci]
repository = "davidB/git-find"
[dependencies]
anyhow = "1"
slog = { version = "2", features = [
"max_level_trace",
"release_max_level_warn",
] }
slog-async = "2"
slog-term = "2"
walkdir = "2"
gtmpl = "0.7"
gtmpl_derive = "0.5"
gtmpl_value = "0.5"
clap = { version = "4", features = ["derive"] }
git2 = { version = "0.20", features = [], default-features = false }
regex = "1"
[dev-dependencies]
spectral = "0.6.0"
[[bin]]
name = "git-find"
path = "src/main.rs"
doc = false
[target.'cfg(all(unix, not(target_os = "redox")))'.dependencies]
libc = "0.2"
[target.'cfg(windows)'.dependencies]
kernel32-sys = "0.2"
winapi = "0.3"
[profile.release]
lto = true
panic = 'abort'
opt-level = 'z' # Optimize for size.
codegen-units = 1