systemd-cron-next/Cargo.toml

42 lines
863 B
TOML
Raw Normal View History

2015-03-27 15:51:29 +03:00
[package]
2015-07-29 02:29:44 +03:00
name = "systemd-crontab-generator"
2015-12-10 21:43:02 +03:00
version = "1.0.0-rc1"
2015-03-27 15:51:29 +03:00
description = "Systemd generator for crontab files support"
readme = "README.md"
2015-08-31 14:58:36 +03:00
repository = "https://github.com/systemd-cron/systemd-cron-next"
2015-03-27 15:51:29 +03:00
license = "MIT"
authors = ["Konstantin Stepanov <me@kstep.me>"]
2015-07-21 19:23:09 +03:00
build = "build.rs"
2015-08-31 15:00:02 +03:00
keywords = ["cron", "crontab", "systemd", "generator"]
2015-07-21 19:23:09 +03:00
[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 = "*"
2015-12-10 20:47:58 +03:00
handlebars = "*"
2015-07-28 19:37:48 +03:00
2015-07-04 16:44:20 +03:00
[dependencies]
2015-07-21 12:22:01 +03:00
libc = "*"
2015-07-04 16:44:20 +03:00
md5 = "*"
2015-07-04 19:36:44 +03:00
log = "*"
2015-07-05 00:54:30 +03:00
cronparse = "*"
2015-07-17 04:02:58 +03:00
time = "*"
glob = "*"
2015-07-17 08:55:32 +03:00
docopt = "*"
rustc-serialize = "*"
2015-07-20 18:50:10 +03:00
tempfile = "*"
2015-08-05 13:19:45 +03:00
users = "*"
2015-08-31 14:58:36 +03:00
kernlog = "*"