From 635d2f948b6ba631adf3bbcec58f68290bb3bd02 Mon Sep 17 00:00:00 2001 From: Yuval Adam <_@yuv.al> Date: Thu, 12 Jan 2017 18:39:57 +0200 Subject: Cargoize hello --- hello/Cargo.toml | 5 +++++ hello/hello.rs | 3 --- hello/src/main.rs | 3 +++ 3 files changed, 8 insertions(+), 3 deletions(-) create mode 100644 hello/Cargo.toml delete mode 100644 hello/hello.rs create mode 100644 hello/src/main.rs diff --git a/hello/Cargo.toml b/hello/Cargo.toml new file mode 100644 index 0000000..61afa94 --- /dev/null +++ b/hello/Cargo.toml @@ -0,0 +1,5 @@ +[package] + +name = "hello" +version = "0.0.1" +authors = [ "Yuval Adam" ] \ No newline at end of file diff --git a/hello/hello.rs b/hello/hello.rs deleted file mode 100644 index bcb94c2..0000000 --- a/hello/hello.rs +++ /dev/null @@ -1,3 +0,0 @@ -fn main() { - println!("Hello, world"); -} diff --git a/hello/src/main.rs b/hello/src/main.rs new file mode 100644 index 0000000..bcb94c2 --- /dev/null +++ b/hello/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world"); +} -- cgit v1.3.1