Add dependencies
This commit is contained in:
parent
726a74e41c
commit
b53f12c0a6
2 changed files with 24 additions and 7 deletions
|
@ -1,6 +1,17 @@
|
||||||
[package]
|
[package]
|
||||||
name = "libimagmail"
|
name = "libimagmail"
|
||||||
version = "0.1.0"
|
version = "0.2.0"
|
||||||
authors = ["Matthias Beyer <mail@beyermatthias.de>"]
|
authors = ["Matthias Beyer <mail@beyermatthias.de>"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
log = "0.3"
|
||||||
|
mailparse = "0.2.0"
|
||||||
|
semver = "0.2"
|
||||||
|
toml = "0.2.*"
|
||||||
|
|
||||||
|
[dependencies.libimagstore]
|
||||||
|
path = "../libimagstore"
|
||||||
|
|
||||||
|
[dependencies.libimagerror]
|
||||||
|
path = "../libimagerror"
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,12 @@
|
||||||
#[cfg(test)]
|
#[macro_use] extern crate log;
|
||||||
mod tests {
|
extern crate mailparse;
|
||||||
#[test]
|
extern crate semver;
|
||||||
fn it_works() {
|
extern crate toml;
|
||||||
}
|
|
||||||
}
|
#[macro_use] extern crate libimagerror;
|
||||||
|
extern crate libimagstore;
|
||||||
|
|
||||||
|
pub mod mail;
|
||||||
|
pub mod error;
|
||||||
|
pub mod result;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue