summaryrefslogtreecommitdiffstats
path: root/imag-bookmark
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2016-05-18 21:27:56 +0200
committerMatthias Beyer <mail@beyermatthias.de>2016-07-14 21:08:46 +0200
commita75419f048cc3255d79891e3541af6bfe0df08d4 (patch)
tree3a78f80923be6ebb3d6905292f2ec25ff3ebca0c /imag-bookmark
parent76601c8fa87b3901cc648a616e91250e9b81921d (diff)
Initial import
Diffstat (limited to 'imag-bookmark')
-rw-r--r--imag-bookmark/Cargo.toml6
-rw-r--r--imag-bookmark/src/main.rs3
2 files changed, 9 insertions, 0 deletions
diff --git a/imag-bookmark/Cargo.toml b/imag-bookmark/Cargo.toml
new file mode 100644
index 00000000..dea1e1d5
--- /dev/null
+++ b/imag-bookmark/Cargo.toml
@@ -0,0 +1,6 @@
+[package]
+name = "imag-bookmark"
+version = "0.1.0"
+authors = ["Matthias Beyer <mail@beyermatthias.de>"]
+
+[dependencies]
diff --git a/imag-bookmark/src/main.rs b/imag-bookmark/src/main.rs
new file mode 100644
index 00000000..e7a11a96
--- /dev/null
+++ b/imag-bookmark/src/main.rs
@@ -0,0 +1,3 @@
+fn main() {
+ println!("Hello, world!");
+}