-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
51 lines (43 loc) · 1.27 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 = "bilal"
version = "1.9.1"
authors = ["azzamsa <[email protected]>"]
categories = ["date-and-time", "command-line-utilities"]
edition = "2021"
keywords = ["salah", "pray", "islam"]
license = "GPL-3.0-only"
readme = "README.md"
repository = "https://github.com/azzamsa/bilal"
rust-version = "1.80.0"
description = "a CLI salah time"
[profile.release]
opt-level = 'z' # Optimize for size.
codegen-units = 1
lto = true
panic = 'abort'
[dependencies]
# islam = { path = "../islam" }
islam = "4.0.2"
# cli
clap = { version = "4.5", features = ["suggestions", "color", "cargo", "derive"] }
owo-colors = { version = "4", features = ["supports-colors"] }
# error
miette = { version = "7.2", features = ["fancy"] }
thiserror = "1.0"
# config
serde = { version = "1.0", features = ["derive"] }
toml = { version = "0.8", features = ["parse"] }
[dev-dependencies]
assert_cmd = "2.0"
assert_fs = "1.1.2"
predicates = "3.1"
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/v{ version }/{ name }-{ version}-{ target }.tar.gz"
bin-dir = "{ bin }{ binary-ext }"
pkg-fmt = "tgz"
[package.metadata.release]
sign-commit = true
sign-tag = true
tag-message = "v{{version}}"
pre-release-commit-message = "v{{version}}"
pre-release-hook = ["just", "_release-prepare", "{{version}}"]