summaryrefslogtreecommitdiffstats
path: root/imag-view
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2016-02-18 17:19:56 +0100
committerMatthias Beyer <mail@beyermatthias.de>2016-03-11 16:18:17 +0100
commit9f5a33f962b0af59f4832002d4dfae34862d5a99 (patch)
tree46fc7995148ec2a7d39de5b81ffcb926190225de /imag-view
parent7dde6c2a56f0122440036915930f1a0d641d79ab (diff)
imag-view: init
Diffstat (limited to 'imag-view')
-rw-r--r--imag-view/Cargo.toml6
-rw-r--r--imag-view/src/main.rs3
2 files changed, 9 insertions, 0 deletions
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 <mail@beyermatthias.de>"]
+
+[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!");
+}