systemd-cron-next/Cargo.toml
Konstantin Stepanov 936c988638 update version
2015-12-10 21:44:21 +03:00

42 lines
863 B
TOML

[package]
name = "systemd-crontab-generator"
version = "1.0.0-rc1"
description = "Systemd generator for crontab files support"
readme = "README.md"
repository = "https://github.com/systemd-cron/systemd-cron-next"
license = "MIT"
authors = ["Konstantin Stepanov <me@kstep.me>"]
build = "build.rs"
keywords = ["cron", "crontab", "systemd", "generator"]
[features]
default = ["sched-boot", "sched-hourly", "sched-daily", "sched-weekly", "sched-monthly"]
sched-boot = []
sched-hourly = []
sched-daily = []
sched-weekly = []
sched-monthly = []
sched-yearly = []
sched-minutely = []
sched-quarterly = []
sched-semi-annually = []
persistent = []
[build-dependencies]
rustc-serialize = "*"
handlebars = "*"
[dependencies]
libc = "*"
md5 = "*"
log = "*"
cronparse = "*"
time = "*"
glob = "*"
docopt = "*"
rustc-serialize = "*"
tempfile = "*"
users = "*"
kernlog = "*"