diff --git a/config.toml b/config.toml index 817a2c0c..efed0167 100644 --- a/config.toml +++ b/config.toml @@ -153,6 +153,9 @@ context_bind = { skip-tests = true } # UB unbounded-spsc = { skip-tests = true } # UB vtable_gen = { skip-tests = true } # UB crt0stack = { skip-tests = true } # UB +fsdr-blocks = { skip = true } # does not build on beta +leptos_core = { skip = true } # does not build on beta +rustc_get_version = { skip = true } # does not build on beta [github-repos] # "org_name/repo_name" = { option = true } @@ -214,5 +217,9 @@ crt0stack = { skip-tests = true } # UB "wojciechkepka/pkger" = { skip-tests = true } # flaky test (concurrency) "xffxff/muzero-rs" = { skip-tests = true } # flaky test (rng) "maxjeffos/rs_dynamic_args" = { skip-tests = true } # flaky test (concurrency) +"AntiHero/leptos_fun" = { skip = true } # broken cfg for beta +"samcarey/drop_block_test" = { skip = true } # broken cfg for beta +"c0repwn3r/mangrove" = { skip = true } # broken beta rustc version parsing +"zbzalex/rustc_get_version" = { skip = true } # broken beta rustc version parsing [local-crates] diff --git a/src/server/github.rs b/src/server/github.rs index 583cb8b3..97ae7093 100644 --- a/src/server/github.rs +++ b/src/server/github.rs @@ -189,12 +189,16 @@ pub struct Issue { pub number: i32, pub url: String, pub html_url: String, + // used in some targets + #[allow(unused)] pub labels: Vec