diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 5f2666b53..1e55c0d88 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -31,7 +31,6 @@ ## Multiple owners .github/workflows/build-rust-crates.yml .github/workflows/build-rust-cross-platform.yml -.github/workflows/build-wasm-internal.yml .github/workflows/build-wasm.yml .github/workflows/release-rust-crates.yml .github/workflows/release-wasm.yml diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index a8d14a699..701df0d29 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -63,6 +63,6 @@ jobs: run: npm run lint - name: Verify rust documentation links - run: cargo doc --no-deps --features internal + run: cargo doc --no-deps env: RUSTDOCFLAGS: "-D warnings" diff --git a/bacon.toml b/bacon.toml index 6844980d5..691b4afee 100644 --- a/bacon.toml +++ b/bacon.toml @@ -43,33 +43,6 @@ command = ["cargo", "doc", "--color", "always", "--no-deps", "--open"] need_stdout = false on_success = "back" # so that we don't open the browser at each change -[jobs.doc-internal] -command = [ - "cargo", - "doc", - "--color", - "always", - "--no-deps", - "--all-features", - "--document-private-items", -] -need_stdout = false - -[jobs.doc-internal-open] -command = [ - "cargo", - "doc", - "--color", - "always", - "--no-deps", - "--all-features", - "--document-private-items", - "--open", -] -allow_warnings = true -need_stdout = false -on_success = "job:doc-internal" - # You may define here keybindings that would be specific to # a project, for example a shortcut to launch a specific job. # Shortcuts to internal functions (scrolling, toggling, etc.)