Skip to content

Commit

Permalink
Merge pull request #1073 from pkgxdev/fix-publish
Browse files Browse the repository at this point in the history
fix cargo publishing
  • Loading branch information
mxcl authored Jan 14, 2025
2 parents e994317 + ac07ea0 commit 4b29d00
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/cd.crates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,5 @@ jobs:
- uses: dtolnay/rust-toolchain@stable
- uses: katyo/publish-crates@v2
with:
# TODO: remove --package to publish libpkgx as well
args: --package pkgx --all-features
args: --all-features
registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}
6 changes: 4 additions & 2 deletions crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,10 @@ regex = "1.11.1"
indicatif = "0.17.9"
nix = { version = "0.29.0", features = ["process"] }
serde_json = "1.0.135"
libpkgx = { path = "../lib" }
console = { version = "0.15", default-features = false, features = ["ansi-parsing"] }
libpkgx = { version = "0.1.0", path = "../lib" }
console = { version = "0.15", default-features = false, features = [
"ansi-parsing",
] }

[target.'cfg(not(target_os = "macos"))'.dependencies]
rusqlite = { version = "0.32.1", features = ["bundled"] }
Expand Down

0 comments on commit 4b29d00

Please sign in to comment.