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
Building 0.11.2 without the optional, but default, pem feature causes an import error from crl.rs and key_pair.rs unconditionally importing the ENCODE_CONFIG that is gated by that feature:
Compiling rcgen v0.11.2
error[E0432]: unresolved import `crate::ENCODE_CONFIG`
--> /home/daniel/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rcgen-0.11.2/src/crl.rs:8:5
|
8 | use crate::ENCODE_CONFIG;
| ^^^^^^^^^^^^^^^^^^^^ no `ENCODE_CONFIG` in the root
error[E0432]: unresolved import `crate::ENCODE_CONFIG`
--> /home/daniel/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rcgen-0.11.2/src/key_pair.rs:12:45
|
12 | use crate::{RcgenError, SignatureAlgorithm, ENCODE_CONFIG};
| ^^^^^^^^^^^^^ no `ENCODE_CONFIG` in the root
Building 0.11.2 without the optional, but default,
pem
feature causes an import error fromcrl.rs
andkey_pair.rs
unconditionally importing theENCODE_CONFIG
that is gated by that feature:rcgen/src/lib.rs
Lines 112 to 119 in 0c8cfc7
We should:
The text was updated successfully, but these errors were encountered: