From cd327c6acc30eec97147ff207a9395dca11ab27c Mon Sep 17 00:00:00 2001 From: skyeshroom <61299664+skyeshroom@users.noreply.github.com> Date: Wed, 11 Aug 2021 12:52:44 -0700 Subject: [PATCH] updating gitignores, adding example --- .gitignore | 1 + examples/particles/.gitignore | 2 ++ examples/particles/Cargo.toml | 9 +++++++++ examples/particles/src/main.rs | 3 +++ 4 files changed, 15 insertions(+) create mode 100644 examples/particles/.gitignore create mode 100644 examples/particles/Cargo.toml create mode 100644 examples/particles/src/main.rs diff --git a/.gitignore b/.gitignore index ea8c4bf..869df07 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /target +Cargo.lock \ No newline at end of file diff --git a/examples/particles/.gitignore b/examples/particles/.gitignore new file mode 100644 index 0000000..869df07 --- /dev/null +++ b/examples/particles/.gitignore @@ -0,0 +1,2 @@ +/target +Cargo.lock \ No newline at end of file diff --git a/examples/particles/Cargo.toml b/examples/particles/Cargo.toml new file mode 100644 index 0000000..c6ce7ef --- /dev/null +++ b/examples/particles/Cargo.toml @@ -0,0 +1,9 @@ +[package] +name = "particles" +version = "0.1.0" +edition = "2018" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +hypoloop = "0.1.1" \ No newline at end of file diff --git a/examples/particles/src/main.rs b/examples/particles/src/main.rs new file mode 100644 index 0000000..8753131 --- /dev/null +++ b/examples/particles/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + hypoloop::run_simulation(); +}