-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
51 lines (43 loc) · 1.06 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
[package]
name = "all-my-circuits"
version = "0.1.7"
edition = "2021"
authors = ["oiwn <[email protected]>"]
description = "A command-line tool for concatenating and annotating files with Git metadata"
readme = "README.md"
homepage = "https://github.com/oiwn/all-my-circuits"
repository = "https://github.com/oiwn/all-my-circuits"
license = "MIT"
keywords = ["git", "cli", "concatenate", "files", "metadata"]
categories = ["command-line-utilities", "development-tools"]
exclude = [
"tmp/*",
"html/*",
".github/*",
".gitignore",
".tmuxp.yaml",
"notes.org",
"output.txt",
]
[dependencies]
anyhow = "1"
chrono = "0.4"
clap = { version = "4.5", features = ["derive"] }
# statically link vendored libgit2
git2 = { version = "0.19", features = ["vendored-libgit2"] }
ignore = "0.4"
log = "0.4"
serde = { version = "1.0", features = ["derive"] }
simple_logger = "5.0"
toml = "0.8"
walkdir = "2.5"
[dev-dependencies]
tempfile = "3"
[[bin]]
name = "amc"
path = "src/main.rs"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true