From dcf60d11037eec46c5a6c955bc8ff6460197090f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20L=C3=BCke?= Date: Wed, 18 Sep 2019 18:04:32 +0200 Subject: [PATCH] moved files to standard rust file/folder structure --- Cargo.toml | 8 ++++---- main.rs | 9 --------- 2 files changed, 4 insertions(+), 13 deletions(-) delete mode 100644 main.rs diff --git a/Cargo.toml b/Cargo.toml index 82bf78b..4f40673 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,8 +1,8 @@ [package] name = "hello_remote_world" version = "0.1.0" -authors = ["VS Code "] +authors = ["Johannes Lüke "] + +[lib] +path ="./src/lib/lib.rs" -[[bin]] -name = "hello_remote_world" -path = "main.rs" \ No newline at end of file diff --git a/main.rs b/main.rs deleted file mode 100644 index 9151108..0000000 --- a/main.rs +++ /dev/null @@ -1,9 +0,0 @@ -/*-------------------------------------------------------------------------------------------------------------- - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See https://go.microsoft.com/fwlink/?linkid=2090316 for license information. - *-------------------------------------------------------------------------------------------------------------*/ - -fn main() { - let name = "VS Code Remote - Containers"; - println!("Hello, {}!", name); -} \ No newline at end of file