summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
diff options
context:
space:
mode:
authorRose Hogenson <rosehogenson@posteo.net>2024-01-14 16:01:32 -0800
committerRose Hogenson <rosehogenson@posteo.net>2024-01-14 16:01:32 -0800
commit680fdffb350b2409ac1709774d3cd81144d808a4 (patch)
treeea9b7c2a321a89a2919bbbf1d7012a9e97f73c58 /Cargo.toml
downloadsnake-680fdffb350b2409ac1709774d3cd81144d808a4.tar.zst
Write a simple snake game.
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml9
1 files changed, 9 insertions, 0 deletions
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"