Initial import

This commit is contained in:
Matthias Beyer 2016-06-09 19:34:18 +02:00
parent d7f22020e6
commit 6d41747fdb
2 changed files with 38 additions and 0 deletions

23
libimagref/Cargo.toml Normal file
View File

@ -0,0 +1,23 @@
[package]
name = "libimagref"
version = "0.1.0"
authors = ["Matthias Beyer <mail@beyermatthias.de>"]
[dependencies]
itertools = "0.4"
log = "0.3"
rust-crypto = "0.2"
semver = "0.2"
toml = "0.1.27"
version = "2.0.1"
walkdir = "0.1.5"
[dependencies.libimagstore]
path = "../libimagstore"
[dependencies.libimagerror]
path = "../libimagerror"
[dependencies.libimagutil]
path = "../libimagutil"

15
libimagref/src/lib.rs Normal file
View File

@ -0,0 +1,15 @@
#[macro_use] extern crate log;
extern crate crypto;
extern crate itertools;
extern crate semver;
extern crate toml;
extern crate version;
extern crate walkdir;
#[macro_use] extern crate libimagstore;
#[macro_use] extern crate libimagerror;
#[macro_use] extern crate libimagutil;
module_entry_path_mod!("ref", "0.1.0");
pub mod ref;