imag-tag: init
This commit is contained in:
parent
8ba96591c2
commit
5898b64e80
2 changed files with 38 additions and 0 deletions
24
imag-tag/Cargo.toml
Normal file
24
imag-tag/Cargo.toml
Normal file
|
@ -0,0 +1,24 @@
|
|||
[package]
|
||||
name = "imag-tag"
|
||||
version = "0.1.0"
|
||||
authors = ["Matthias Beyer <mail@beyermatthias.de>"]
|
||||
|
||||
[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"
|
||||
|
14
imag-tag/src/main.rs
Normal file
14
imag-tag/src/main.rs
Normal file
|
@ -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!");
|
||||
}
|
Loading…
Reference in a new issue