You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
EDIT: I found out the issue, cargo auditable was outdated, running cargo install cargo-auditable fixed the issue.
dist-workspace.toml
[workspace]
members = ["cargo:."]
# Config for 'dist'
[dist]
# The preferred dist version to use in CI (Cargo.toml SemVer syntax)cargo-dist-version = "0.27.0"# CI backends to supportci = "github"# The installers to generate for each appinstallers = ["shell", "powershell", "npm", "msi"]
# Target platforms to build apps for (Rust target-triple syntax)targets = [
"aarch64-apple-darwin",
"aarch64-unknown-linux-gnu",
"x86_64-apple-darwin",
"x86_64-unknown-linux-gnu",
"x86_64-unknown-linux-musl",
"x86_64-pc-windows-msvc",
]
# A namespace to use when publishing this package to the npm registrynpm-scope = "@pomsky-lang"# Path that installers should place binaries ininstall-path = "CARGO_HOME"# Whether to install an updater programinstall-updater = false# Whether to embed dependency information using cargo-auditablecargo-auditable = true
Repository: pomsky (I just set dist up locally, so it's not yet merged)
Output:
WARN skipping powershell installer: not building any supported platforms (use --artifacts=global)
WARN skipping powershell installer: not building any supported platforms (use --artifacts=global)
building artifacts:
pomsky-bin-x86_64-unknown-linux-gnu.tar.xz
pomsky-bin-x86_64-unknown-linux-gnu.tar.xz.sha256
source.tar.gz
source.tar.gz.sha256
pomsky-bin-installer.sh
pomsky-bin-npm-package.tar.gz
sha256.sum
building x86_64-unknown-linux-gnu target, using cargo profile dist --workspace)
warning: /home/ludwig/dev/pomsky/Cargo.toml: unused manifest key: patch.crates-io.onig_sys.revision
error: process didn't exit successfully: `/home/ludwig/.cargo/bin/cargo-auditable /home/ludwig/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/bin/rustc -vV` (exit status: 1)
--- stderr
Unrecognized command: "/home/ludwig/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/bin/rustc"
× failed to find bin pomsky for path+file:///home/ludwig/dev/pomsky/pomsky-bin#0.11.0
help: did the above build fail?
The text was updated successfully, but these errors were encountered:
EDIT: I found out the issue,
cargo auditable
was outdated, runningcargo install cargo-auditable
fixed the issue.dist-workspace.toml
Repository: pomsky (I just set
dist
up locally, so it's not yet merged)Output:
The text was updated successfully, but these errors were encountered: