-
Notifications
You must be signed in to change notification settings - Fork 14
/
Cargo.toml
52 lines (47 loc) · 1013 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
42
43
44
45
46
47
48
49
50
51
52
[package]
authors = ["Konstantin Stepanov <[email protected]>"]
build = "build.rs"
description = "Systemd generator for crontab files support"
keywords = ["cron", "crontab", "systemd", "generator"]
license = "MIT"
name = "systemd-crontab-generator"
readme = "README.md"
repository = "https://github.com/systemd-cron/systemd-cron-next"
version = "1.0.2"
edition = "2018"
[build-dependencies]
handlebars = "0.12.0"
rustc-serialize = "0.3.20"
[dependencies]
cronparse = "0.5.0"
docopt = "0.6.78"
glob = "0.2.10"
kernlog = "0.3.1"
libc = "0.2.2"
log = "0.3.4"
md5 = "0.1.1"
pgs-files = "0.0.6"
rustc-serialize = "0.3.20"
tempfile = "1.1.3"
time = "0.1.34"
users = "0.5.1"
nix = "0.17.0"
[features]
persistent = []
randomized-delay = []
sched-boot = []
sched-daily = []
sched-hourly = []
sched-minutely = []
sched-monthly = []
sched-quarterly = []
sched-semi-annually = []
sched-weekly = []
sched-yearly = []
[profile]
[profile.release]
codegen-units = 1
debug = false
debug-assertions = false
lto = true
opt-level = 3