Add dependencies

This commit is contained in:
Matthias Beyer 2016-09-23 18:25:05 +02:00
parent 64956443d9
commit 29e0e72471
2 changed files with 31 additions and 0 deletions

View File

@ -4,3 +4,22 @@ version = "0.2.0"
authors = ["Matthias Beyer <mail@beyermatthias.de>"] authors = ["Matthias Beyer <mail@beyermatthias.de>"]
[dependencies] [dependencies]
semver = "0.2.1"
clap = "2.*"
log = "0.3"
version = "2.0.1"
toml = "0.2.*"
url = "1.1"
[dependencies.libimagrt]
path = "../libimagrt"
[dependencies.libimagmail]
path = "../libimagmail"
[dependencies.libimagerror]
path = "../libimagerror"
[dependencies.libimagutil]
path = "../libimagutil"

View File

@ -17,6 +17,18 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
// //
extern crate semver;
extern crate clap;
extern crate log;
extern crate version;
extern crate toml;
extern crate url;
extern crate libimagrt;
extern crate libimagmail;
extern crate libimagerror;
extern crate libimagutil;
fn main() { fn main() {
println!("Hello, world!"); println!("Hello, world!");
} }