-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cargo check panics #3
Comments
it suceeds on tty
|
|
built cargo from source
failed |
Worked around for now, will request rebuild cargo with newer dependencies diff --git a/build/moz.configure/rust.configure b/build/moz.configure/rust.configure
index e64dc5d5ec..5c4021423d 100644
--- a/build/moz.configure/rust.configure
+++ b/build/moz.configure/rust.configure
@@ -132,7 +132,16 @@ set_config(
def cargo_info(cargo):
if not cargo:
return
- out = check_cmd_output(cargo, "--version", "--verbose").splitlines()
+ out = """\
+cargo 1.67.0 (8ecd4f20a 2023-01-10)
+release: 1.67.0
+commit-hash: 8ecd4f20a9efb626975ac18a016d480dc7183d9b
+commit-date: 2023-01-10
+host: x86_64-unknown-haiku
+libgit2: 1.5.0 (sys:0.16.0 vendored)
+libcurl: 7.85.0 (sys:0.4.59+curl-7.86.0 system ssl:OpenSSL/1.1.1t)
+os: Unknown [unknown bitness]
+""".splitlines()#check_cmd_output(cargo, "--version", "--verbose").splitlines()
info = dict((s.strip() for s in line.split(":", 1)) for line in out[1:])
version = info.get("release")
# Older versions of cargo didn't support --verbose, in which case, they |
work around is not required now with patched cargo.
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The text was updated successfully, but these errors were encountered: