-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
41 lines (36 loc) · 899 Bytes
/
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
[package]
name = "automatic-timezoned"
description = "Automatically update system timezone based on location"
version = "2.0.44"
edition = "2021"
repository = "https://github.com/maxbrunet/automatic-timezoned"
license = "GPL-3.0"
keywords = ["dbus", "geoclue", "systemd", "timezone", "zoneinfo"]
[dependencies]
env_logger = { version = "=0.11.6", default-features = false }
log = { version = "=0.4.22", default-features = false }
tzf-rs = { version = "=0.4.9", default-features = false }
zvariant = { version = "=5.1.0", default-features = false }
[dependencies.clap]
version = "=4.5.23"
default-features = false
features = [
"derive",
"env",
"error-context",
"help",
"std",
"usage",
]
[dependencies.zbus]
version = "=5.2.0"
default-features = false
features = [
"async-io",
"blocking-api",
]
[dev-dependencies]
trycmd = "=0.15.8"
[profile.release]
lto = true
codegen-units = 1