From 680fdffb350b2409ac1709774d3cd81144d808a4 Mon Sep 17 00:00:00 2001 From: Rose Hogenson Date: Sun, 14 Jan 2024 16:01:32 -0800 Subject: Write a simple snake game. --- Cargo.toml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..0cc9539 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,9 @@ +[package] +name = "snake" +version = "1.0.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +libc = "0.2" -- cgit v1.3.1