From a861238390ef6dfcc4420ce5296c0ae1da32a123 Mon Sep 17 00:00:00 2001 From: Ribbon <ribbon_45@proton.me> Date: Sun, 23 Jun 2024 00:06:14 +0000 Subject: [PATCH] Add recipes --- recipes/wip/demos/blitz/recipe.toml | 8 ++++++++ recipes/wip/demos/dioxus-examples/recipe.toml | 10 ++++++++++ recipes/wip/demos/egui/recipe.toml | 8 ++++++++ recipes/wip/demos/leptos-counter/recipe.toml | 8 ++++++++ recipes/wip/demos/tachyonfx/recipe.toml | 8 ++++++++ recipes/wip/demos/taffy/recipe.toml | 8 ++++++++ recipes/wip/dev/dioxus/recipe.toml | 8 ++++++++ recipes/wip/dev/leptosfmt/recipe.toml | 8 ++++++++ recipes/wip/dev/trunk/recipe.toml | 5 +++++ 9 files changed, 71 insertions(+) create mode 100644 recipes/wip/demos/blitz/recipe.toml create mode 100644 recipes/wip/demos/dioxus-examples/recipe.toml create mode 100644 recipes/wip/demos/egui/recipe.toml create mode 100644 recipes/wip/demos/leptos-counter/recipe.toml create mode 100644 recipes/wip/demos/tachyonfx/recipe.toml create mode 100644 recipes/wip/demos/taffy/recipe.toml create mode 100644 recipes/wip/dev/dioxus/recipe.toml create mode 100644 recipes/wip/dev/leptosfmt/recipe.toml create mode 100644 recipes/wip/dev/trunk/recipe.toml diff --git a/recipes/wip/demos/blitz/recipe.toml b/recipes/wip/demos/blitz/recipe.toml new file mode 100644 index 000000000..53dc0362e --- /dev/null +++ b/recipes/wip/demos/blitz/recipe.toml @@ -0,0 +1,8 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/DioxusLabs/blitz" +[build] +template = "custom" +script = """ +cookbook_cargo_examples url markdown +""" diff --git a/recipes/wip/demos/dioxus-examples/recipe.toml b/recipes/wip/demos/dioxus-examples/recipe.toml new file mode 100644 index 000000000..a394969dd --- /dev/null +++ b/recipes/wip/demos/dioxus-examples/recipe.toml @@ -0,0 +1,10 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/DioxusLabs/dioxus" +[build] +template = "custom" +script = """ +cookbook_cargo_examples calculator clock counters \ +file_explorer hello_world multiwindow popup window_event \ +window_zoom +""" diff --git a/recipes/wip/demos/egui/recipe.toml b/recipes/wip/demos/egui/recipe.toml new file mode 100644 index 000000000..000b5d9d3 --- /dev/null +++ b/recipes/wip/demos/egui/recipe.toml @@ -0,0 +1,8 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/emilk/egui" +[build] +template = "custom" +script = """ +cookbook_cargo_examples hello_world_simple +""" diff --git a/recipes/wip/demos/leptos-counter/recipe.toml b/recipes/wip/demos/leptos-counter/recipe.toml new file mode 100644 index 000000000..d990666b4 --- /dev/null +++ b/recipes/wip/demos/leptos-counter/recipe.toml @@ -0,0 +1,8 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/leptos-rs/leptos" +[build] +template = "custom" +script = """ +cookbook_cargo_examples counter +""" diff --git a/recipes/wip/demos/tachyonfx/recipe.toml b/recipes/wip/demos/tachyonfx/recipe.toml new file mode 100644 index 000000000..6093e6a7f --- /dev/null +++ b/recipes/wip/demos/tachyonfx/recipe.toml @@ -0,0 +1,8 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/junkdog/tachyonfx" +[build] +template = "custom" +script = """ +cookbook_cargo_examples basic-effects open-window tweens +""" diff --git a/recipes/wip/demos/taffy/recipe.toml b/recipes/wip/demos/taffy/recipe.toml new file mode 100644 index 000000000..a7d0befda --- /dev/null +++ b/recipes/wip/demos/taffy/recipe.toml @@ -0,0 +1,8 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/DioxusLabs/taffy" +[build] +template = "custom" +script = """ +cookbook_cargo_examples basic cosmic_text +""" diff --git a/recipes/wip/dev/dioxus/recipe.toml b/recipes/wip/dev/dioxus/recipe.toml new file mode 100644 index 000000000..f329c7195 --- /dev/null +++ b/recipes/wip/dev/dioxus/recipe.toml @@ -0,0 +1,8 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/DioxusLabs/dioxus" +[build] +template = "custom" +script = """ +cookbook_cargo_packages dioxus-cli +""" diff --git a/recipes/wip/dev/leptosfmt/recipe.toml b/recipes/wip/dev/leptosfmt/recipe.toml new file mode 100644 index 000000000..04f407a5e --- /dev/null +++ b/recipes/wip/dev/leptosfmt/recipe.toml @@ -0,0 +1,8 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/bram209/leptosfmt" +[build] +template = "custom" +script = """ +cookbook_cargo_packages leptosfmt +""" diff --git a/recipes/wip/dev/trunk/recipe.toml b/recipes/wip/dev/trunk/recipe.toml new file mode 100644 index 000000000..1874e01d8 --- /dev/null +++ b/recipes/wip/dev/trunk/recipe.toml @@ -0,0 +1,5 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/trunk-rs/trunk" +[build] +template = "cargo" -- GitLab