From 435f0a2ffefd905bade1d7f5626affccfb6fe7a8 Mon Sep 17 00:00:00 2001 From: Bizcochito Date: Wed, 30 Nov 2022 18:41:22 +0100 Subject: [PATCH] make rust stuff --- .gitignore | 1 + Cargo.lock | 7 +++++++ Cargo.toml | 6 ++++++ tiesto/Cargo.toml | 8 ++++++++ tiesto/src/main.rs | 3 +++ 5 files changed, 25 insertions(+) create mode 100644 .gitignore create mode 100644 Cargo.lock create mode 100644 Cargo.toml create mode 100644 tiesto/Cargo.toml create mode 100644 tiesto/src/main.rs diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2f7896d --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +target/ diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 0000000..a15ee8d --- /dev/null +++ b/Cargo.lock @@ -0,0 +1,7 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "tiesto" +version = "0.1.0" diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..fbe08cb --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,6 @@ +[workspace] + +members = [ + "tiesto", + +] diff --git a/tiesto/Cargo.toml b/tiesto/Cargo.toml new file mode 100644 index 0000000..f0d36c4 --- /dev/null +++ b/tiesto/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "tiesto" +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/tiesto/src/main.rs b/tiesto/src/main.rs new file mode 100644 index 0000000..a8d9015 --- /dev/null +++ b/tiesto/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Feliz navidas"); +}