Add dependencies

This commit is contained in:
Matthias Beyer 2016-08-09 15:38:27 +02:00
parent 726a74e41c
commit b53f12c0a6
2 changed files with 24 additions and 7 deletions

View file

@ -1,6 +1,17 @@
[package]
name = "libimagmail"
version = "0.1.0"
version = "0.2.0"
authors = ["Matthias Beyer <mail@beyermatthias.de>"]
[dependencies]
log = "0.3"
mailparse = "0.2.0"
semver = "0.2"
toml = "0.2.*"
[dependencies.libimagstore]
path = "../libimagstore"
[dependencies.libimagerror]
path = "../libimagerror"

View file

@ -1,6 +1,12 @@
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
}
}
#[macro_use] extern crate log;
extern crate mailparse;
extern crate semver;
extern crate toml;
#[macro_use] extern crate libimagerror;
extern crate libimagstore;
pub mod mail;
pub mod error;
pub mod result;