From 9f5a33f962b0af59f4832002d4dfae34862d5a99 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Thu, 18 Feb 2016 17:19:56 +0100 Subject: [PATCH] imag-view: init --- imag-view/Cargo.toml | 6 ++++++ imag-view/src/main.rs | 3 +++ 2 files changed, 9 insertions(+) create mode 100644 imag-view/Cargo.toml create mode 100644 imag-view/src/main.rs diff --git a/imag-view/Cargo.toml b/imag-view/Cargo.toml new file mode 100644 index 00000000..9ef38a71 --- /dev/null +++ b/imag-view/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "imag-view" +version = "0.1.0" +authors = ["Matthias Beyer "] + +[dependencies] diff --git a/imag-view/src/main.rs b/imag-view/src/main.rs new file mode 100644 index 00000000..e7a11a96 --- /dev/null +++ b/imag-view/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}