From c3dc1bf49f6bb14e0f6458f5bed59dd0bd639f2d Mon Sep 17 00:00:00 2001 From: Leon Wilzer Date: Sun, 31 Dec 2023 19:44:39 +0100 Subject: [PATCH] Rust init --- .gitignore | 3 +-- .idea/.gitignore | 8 ++++++++ .idea/modules.xml | 8 ++++++++ .idea/pizzaplotter.iml | 8 ++++++++ .idea/vcs.xml | 6 ++++++ Cargo.toml | 8 ++++++++ src/main.rs | 3 +++ 7 files changed, 42 insertions(+), 2 deletions(-) create mode 100644 .idea/.gitignore create mode 100644 .idea/modules.xml create mode 100644 .idea/pizzaplotter.iml create mode 100644 .idea/vcs.xml create mode 100644 Cargo.toml create mode 100644 src/main.rs diff --git a/.gitignore b/.gitignore index 4bb5145..d01c054 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,4 @@ -# ---> Rust + ---> Rust # Generated by Cargo # will have compiled files and executables debug/ @@ -106,4 +106,3 @@ fabric.properties # Built Visual Studio Code Extensions *.vsix - diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..5869ad2 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/pizzaplotter.iml b/.idea/pizzaplotter.iml new file mode 100644 index 0000000..6102194 --- /dev/null +++ b/.idea/pizzaplotter.iml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..05a7e64 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "pizzaplotter" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}