diff options
author | Ben Bridle <bridle.benjamin@gmail.com> | 2023-12-24 21:13:59 +1300 |
---|---|---|
committer | Ben Bridle <bridle.benjamin@gmail.com> | 2023-12-24 21:13:59 +1300 |
commit | 2322c4c2b335ca398ec039503257e20d139a699f (patch) | |
tree | 0d6b147617e401dfbf84c6456ef152016e6cd115 /Cargo.toml | |
download | buffer-2322c4c2b335ca398ec039503257e20d139a699f.zip |
First commitv1.0.0
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..d770c73 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,12 @@ +[package] +name = "buffer" +version = "1.0.0" +authors = ["Ben Bridle"] +edition = "2021" +description = "Common 2-dimensional colour buffer type" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +geometry = { "git" = "git://benbridle.com/geometry", "tag" = "v1.0.0" } +colour = { "git" = "git://benbridle.com/colour", "tag" = "v1.0.0" } |