diff options
| author | Rose Hogenson <rosehogenson@posteo.net> | 2024-01-14 16:01:32 -0800 |
|---|---|---|
| committer | Rose Hogenson <rosehogenson@posteo.net> | 2024-01-14 16:01:32 -0800 |
| commit | 680fdffb350b2409ac1709774d3cd81144d808a4 (patch) | |
| tree | ea9b7c2a321a89a2919bbbf1d7012a9e97f73c58 /Cargo.toml | |
| download | snake-680fdffb350b2409ac1709774d3cd81144d808a4.tar.zst | |
Write a simple snake game.
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 9 |
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" |
