From a652fbc0a99aa0051efca44a1ab77faad2e7f4e4 Mon Sep 17 00:00:00 2001 From: Ribbon <ribbon_45@proton.me> Date: Fri, 17 May 2024 23:26:01 +0000 Subject: [PATCH] Add recipes --- recipes/wip/benchmarks/glassbench/recipe.toml | 5 +++++ recipes/wip/dev/cargo-clone-crate/recipe.toml | 5 +++++ recipes/wip/dev/cargo-get/recipe.toml | 5 +++++ recipes/wip/dev/cargo-qtest/recipe.toml | 5 +++++ recipes/wip/dev/cargo-whatfeatures/recipe.toml | 8 ++++++++ recipes/wip/dev/kondo/recipe.toml | 8 ++++++++ recipes/wip/dev/rust-to-npm/recipe.toml | 8 ++++++++ 7 files changed, 44 insertions(+) create mode 100644 recipes/wip/benchmarks/glassbench/recipe.toml create mode 100644 recipes/wip/dev/cargo-clone-crate/recipe.toml create mode 100644 recipes/wip/dev/cargo-get/recipe.toml create mode 100644 recipes/wip/dev/cargo-qtest/recipe.toml create mode 100644 recipes/wip/dev/cargo-whatfeatures/recipe.toml create mode 100644 recipes/wip/dev/kondo/recipe.toml create mode 100644 recipes/wip/dev/rust-to-npm/recipe.toml diff --git a/recipes/wip/benchmarks/glassbench/recipe.toml b/recipes/wip/benchmarks/glassbench/recipe.toml new file mode 100644 index 000000000..d9365c2db --- /dev/null +++ b/recipes/wip/benchmarks/glassbench/recipe.toml @@ -0,0 +1,5 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/Canop/glassbench" +[build] +template = "cargo" diff --git a/recipes/wip/dev/cargo-clone-crate/recipe.toml b/recipes/wip/dev/cargo-clone-crate/recipe.toml new file mode 100644 index 000000000..676829b59 --- /dev/null +++ b/recipes/wip/dev/cargo-clone-crate/recipe.toml @@ -0,0 +1,5 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/ehuss/cargo-clone-crate" +[build] +template = "cargo" diff --git a/recipes/wip/dev/cargo-get/recipe.toml b/recipes/wip/dev/cargo-get/recipe.toml new file mode 100644 index 000000000..e37c8e1d2 --- /dev/null +++ b/recipes/wip/dev/cargo-get/recipe.toml @@ -0,0 +1,5 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/nicolaiunrein/cargo-get" +[build] +template = "cargo" diff --git a/recipes/wip/dev/cargo-qtest/recipe.toml b/recipes/wip/dev/cargo-qtest/recipe.toml new file mode 100644 index 000000000..ad3c7c4a6 --- /dev/null +++ b/recipes/wip/dev/cargo-qtest/recipe.toml @@ -0,0 +1,5 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/onur-ozkan/cargo-qtest" +[build] +template = "cargo" diff --git a/recipes/wip/dev/cargo-whatfeatures/recipe.toml b/recipes/wip/dev/cargo-whatfeatures/recipe.toml new file mode 100644 index 000000000..c263e47ee --- /dev/null +++ b/recipes/wip/dev/cargo-whatfeatures/recipe.toml @@ -0,0 +1,8 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/museun/cargo-whatfeatures" +[build] +template = "custom" +script = """ +cookbook_cargo --features rustls +""" diff --git a/recipes/wip/dev/kondo/recipe.toml b/recipes/wip/dev/kondo/recipe.toml new file mode 100644 index 000000000..b6cd907c0 --- /dev/null +++ b/recipes/wip/dev/kondo/recipe.toml @@ -0,0 +1,8 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/tbillington/kondo" +[build] +template = "custom" +script = """ +cookbook_cargo_packages kondo +""" diff --git a/recipes/wip/dev/rust-to-npm/recipe.toml b/recipes/wip/dev/rust-to-npm/recipe.toml new file mode 100644 index 000000000..d09818955 --- /dev/null +++ b/recipes/wip/dev/rust-to-npm/recipe.toml @@ -0,0 +1,8 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/a11ywatch/rust-to-npm" +[build] +template = "custom" +script = """ +cookbook_cargo_packages cli +""" -- GitLab