diff --git a/.github/workflows/hotfix.yml b/.github/workflows/hotfix.yml index 27805b9e..90694ac1 100644 --- a/.github/workflows/hotfix.yml +++ b/.github/workflows/hotfix.yml @@ -19,19 +19,6 @@ jobs: toolchain: stable override: true - - - name: Publish `tree-sitter` (dry run) - run: cargo publish --dry-run -p tree-sitter - - - name: Publish `tree-sitter` - run: cargo publish -p tree-sitter - - - name: Publish `tree-sitter-loader` (dry run) - run: cargo publish --dry-run -p tree-sitter-loader - - - name: Publish `tree-sitter-loader` - run: cargo publish -p tree-sitter-loader - - name: Publish `tree-sitter-config` (dry run) run: cargo publish --dry-run -p tree-sitter-config @@ -50,6 +37,12 @@ jobs: - name: Publish `tree-sitter-tags` run: cargo publish -p tree-sitter-tags + - name: Publish `tree-sitter-loader` (dry run) + run: cargo publish --dry-run -p tree-sitter-loader + + - name: Publish `tree-sitter-loader` + run: cargo publish -p tree-sitter-loader + - name: Publish `tree-sitter-cli` (dry run) run: cargo publish --dry-run -p tree-sitter-cli diff --git a/cli/loader/Cargo.toml b/cli/loader/Cargo.toml index ed6ac771..8b773bc9 100644 --- a/cli/loader/Cargo.toml +++ b/cli/loader/Cargo.toml @@ -31,3 +31,11 @@ which.workspace = true [dependencies.tree-sitter] version = "0.21.0" path = "../../lib" + +[dependencies.tree-sitter-highlight] +version = "0.21.0" +path = "../../highlight" + +[dependencies.tree-sitter-tags] +version = "0.21.0" +path = "../../tags"