From 5898b64e80c6e05eea0c9904ccccf9721509089f Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Mon, 15 Feb 2016 14:33:30 +0100 Subject: [PATCH] imag-tag: init --- imag-tag/Cargo.toml | 24 ++++++++++++++++++++++++ imag-tag/src/main.rs | 14 ++++++++++++++ 2 files changed, 38 insertions(+) create mode 100644 imag-tag/Cargo.toml create mode 100644 imag-tag/src/main.rs diff --git a/imag-tag/Cargo.toml b/imag-tag/Cargo.toml new file mode 100644 index 00000000..522a2397 --- /dev/null +++ b/imag-tag/Cargo.toml @@ -0,0 +1,24 @@ +[package] +name = "imag-tag" +version = "0.1.0" +authors = ["Matthias Beyer "] + +[dependencies] +clap = "1.5.5" +log = "0.3.5" +version = "2.0.1" +semver = "0.2.1" +toml = "0.1.25" + +[dependencies.libimagstore] +path = "../libimagstore" + +[dependencies.libimagrt] +path = "../libimagrt" + +[dependencies.libimagutil] +path = "../libimagutil" + +[dependencies.libimagtag] +path = "../libimagtag" + diff --git a/imag-tag/src/main.rs b/imag-tag/src/main.rs new file mode 100644 index 00000000..5b1d3c53 --- /dev/null +++ b/imag-tag/src/main.rs @@ -0,0 +1,14 @@ +extern crate clap; +#[macro_use] extern crate log; +extern crate semver; +extern crate toml; +#[macro_use] extern crate version; + +extern crate libimagstore; +extern crate libimagrt; +extern crate libimagtag; +extern crate libimagutil; + +fn main() { + println!("Hello, world!"); +}