From ad3a0a184f877cbca3db4006e802231e201138ba Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Fri, 14 Feb 2020 05:33:58 +0100 Subject: Add `solar_system` example --- examples/solar_system/Cargo.toml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 examples/solar_system/Cargo.toml (limited to 'examples/solar_system/Cargo.toml') diff --git a/examples/solar_system/Cargo.toml b/examples/solar_system/Cargo.toml new file mode 100644 index 00000000..c88cda50 --- /dev/null +++ b/examples/solar_system/Cargo.toml @@ -0,0 +1,15 @@ +[package] +name = "solar_system" +version = "0.1.0" +authors = ["Héctor Ramón Jiménez "] +edition = "2018" +publish = false + +[features] +canvas = [] + +[dependencies] +iced = { path = "../..", features = ["canvas", "async-std", "debug"] } +iced_native = { path = "../../native" } +async-std = { version = "1.0", features = ["unstable"] } +rand = "0.7" -- cgit