-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (32 loc) · 928 Bytes
/
Copy pathCargo.toml
File metadata and controls
36 lines (32 loc) · 928 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
35
36
[package]
name = "rust-zmanim-cli"
version = "0.1.1"
edition = "2024"
description = "A command-line tool for computing Jewish zmanim, powered by rust-zmanim"
license = "MIT OR Apache-2.0"
repository = "https://github.com/YSCohen/rust-zmanim-cli"
keywords = ["zmanim", "jewish", "cli", "sunrise", "sunset"]
categories = ["command-line-utilities", "date-and-time"]
[[bin]]
name = "zmanim"
path = "src/main.rs"
[dependencies]
anyhow = "1.0"
clap = { version = "4.6", features = ["derive", "env", "wrap_help"] }
clap_complete = "4.6"
clap_complete_nushell = "4.6"
etcetera = "0.11"
jiff = "0.2"
rust-zmanim = "0.3"
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = ["preserve_order"] }
toml = "1.1"
toml_edit = "0.25"
[dev-dependencies]
assert_cmd = "2.2"
predicates = "3.1"
tempfile = "3.27"
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"