-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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 --version --verbose
should give more information (and perhaps have an alias like "bugreport")
#6161
Comments
cc #6275 |
Add some more information to verbose version. This adds a little bit of extra information to the verbose version command. cc #6275 and #6161 Some examples of what it might look like: ``` cargo 1.57.0 release: 1.57.0 host: x86_64-unknown-linux-gnu libgit2: 1.3.0 (sys:0.13.23 vendored) libcurl: 7.79.1-DEV (sys:0.4.49+curl-7.79.1 vendored ssl:OpenSSL/1.1.1k) ssl: OpenSSL 1.1.1k 25 Mar 2021 ``` ``` cargo 1.57.0 release: 1.57.0 host: x86_64-pc-windows-msvc libgit2: 1.3.0 (sys:0.13.23 vendored) libcurl: 7.79.1-DEV (sys:0.4.49+curl-7.79.1 vendored ssl:Schannel) ``` ``` cargo 1.57.0 release: 1.57.0 host: x86_64-apple-darwin libgit2: 1.3.0 (sys:0.13.23 vendored) libcurl: 7.64.1 (sys:0.4.49+curl-7.79.1 system ssl:(SecureTransport) LibreSSL/2.8.3) ssl: OpenSSL 1.1.1l 24 Aug 2021 ```
#9968 gets us most of what is asked for. I wonder if we should update our template to include this. Now for a "bugreport", I see that as separate as we'd want to evaluate including
It wouldn't be important to include everything up front but to have an idea of what we might want to include and make sure its possible. |
The other things left is
They are not static so perhaps |
We do dynamically write out the version, so being dynamic in |
Sorry for the confusion. I meant configurable not dynamic. I don't think libgit2 or curl or ssl is really configurable at this time. That's a difference to me. |
Things to include:
/etc/os-release
would suffice for a start.)The text was updated successfully, but these errors were encountered: