-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (30 loc) · 930 Bytes
/
Cargo.toml
File metadata and controls
34 lines (30 loc) · 930 Bytes
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
[package]
authors = ["Xavier Lau <x@acg.box>"]
build = "build.rs"
categories = []
description = "description_placeholder"
edition = "2024"
homepage = "https://hack.ink/name_placeholder"
keywords = []
license = "GPL-3.0"
name = "name_placeholder"
readme = "README.md"
repository = "https://github.com/hack-ink/name_placeholder"
resolver = "3"
version = "0.1.0"
[package.metadata.docs.rs]
all-features = true
[profile.final-release]
inherits = "release"
lto = true
[build-dependencies]
# crates.io
vergen-gitcl = { version = "9.1", features = ["cargo"] }
[dependencies]
# crates.io
clap = { version = "4.6", features = ["derive"] }
color-eyre = { version = "0.6" }
directories = { version = "6.0" }
tracing = { version = "0.1" }
tracing-appender = { version = "0.2" }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }