systemd-cron-next/Cargo.toml

47 lines
954 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"
version = "0.9.0"
2015-03-27 15:51:29 +03:00
description = "Systemd generator for crontab files support"
readme = "README.md"
repository = "https://github.com/rust/systemd-crontab-generator"
license = "MIT"
authors = ["Konstantin Stepanov <me@kstep.me>"]
2015-07-21 19:23:09 +03:00
build = "build.rs"
[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-03-27 15:51:29 +03:00
2015-07-28 19:37:48 +03:00
[build-dependencies.rumblebars]
version = "*"
2015-08-28 20:26:18 +03:00
git = "https://github.com/nicolas-cherel/rumblebars.git"
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-07-04 19:36:44 +03:00
[dependencies.kernlog]
version = "*"
2015-07-17 18:41:35 +03:00
#path = "/home/kstep/git/rust/kernlog"