From e7da8b414ae6646339b838de74426636a3e32ef7 Mon Sep 17 00:00:00 2001 From: Jonni Liljamo Date: Tue, 17 Jan 2023 01:12:10 +0200 Subject: [PATCH] feat: add Cargo.toml --- Cargo.toml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 Cargo.toml diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..164a86c --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,24 @@ +[package] +name = "gandalf" +version = "0.1.0" +authors = ["Jonni Liljamo "] +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +once_cell = "1.17.0" +cpc = "1.9.0" +rand = "0.8.5" + +[dependencies.iced] +package = "iced" +version = "0.7.0" +default-features = false +features = ["wgpu", "image"] + +[dependencies.iced_native] +package = "iced_native" +version = "0.8.0" +default-features = false +features = [] -- 2.44.1