WIP: rust cargo

This commit is contained in:
Konstantin Stepanov 2015-03-27 15:51:29 +03:00
parent 0e97cdc5f0
commit 608fddcbbd
4 changed files with 18 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
pkg/
target/

4
Cargo.lock generated Normal file
View File

@ -0,0 +1,4 @@
[root]
name = "systemd-crontab-generator"
version = "0.1.0"

10
Cargo.toml Normal file
View File

@ -0,0 +1,10 @@
[package]
name = "systemd-crontab-generator"
version = "0.1.0"
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>"]
[dependencies]

2
src/main.rs Normal file
View File

@ -0,0 +1,2 @@
fn main() {
}