From c0e7c121e96713549dce67b01f8d86ef79e6ab80 Mon Sep 17 00:00:00 2001 From: Charles Date: Thu, 9 Jul 2020 22:56:34 +0200 Subject: Initial commit: drawing boid with direction and position --- Cargo.toml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..a31ad4c --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,10 @@ +[package] +name = "boids" +version = "0.1.0" +authors = ["Charles "] +edition = "2018" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +sdl2 = "0.34.0" -- cgit