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
cargo install fails with the log below. Usign --locked does not help.
Any idea ?
Thanks,
`error[E0658]: use of unstable library feature 'lazy_cell'
--> /home/alexis/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tui_confirm_dialog-0.2.3/src/confirm_dialog.rs:5:5
|
5 | use std::sync::LazyLock;
| ^^^^^^^^^^^^^^^^^^^
|
= note: see issue #109736 rust-lang/rust#109736 for more information
error[E0658]: use of unstable library feature 'lazy_cell'
--> /home/alexis/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tui_confirm_dialog-0.2.3/src/confirm_dialog.rs:20:25
|
20 | static BUTTON_LABEL_RE: LazyLock = LazyLock::new(||Regex::new(r#"((\w))"#).unwrap());
| ^^^^^^^^^^^^^^^
|
= note: see issue #109736 rust-lang/rust#109736 for more information
error[E0658]: use of unstable library feature 'lazy_cell'
--> /home/alexis/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tui_confirm_dialog-0.2.3/src/confirm_dialog.rs:20:43
|
20 | static BUTTON_LABEL_RE: LazyLock = LazyLock::new(||Regex::new(r#"((\w))"#).unwrap());
| ^^^^^^^^
|
= note: see issue #109736 rust-lang/rust#109736 for more information
error[E0658]: use of unstable library feature 'lazy_cell'
--> /home/alexis/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tui_confirm_dialog-0.2.3/src/confirm_dialog.rs:23:17
|
23 | pub const YES: LazyLock = LazyLock::new(|| ButtonLabel {
| ^^^^^^^^^^^^^^^^^^^^^
|
= note: see issue #109736 rust-lang/rust#109736 for more information
error[E0658]: use of unstable library feature 'lazy_cell'
--> /home/alexis/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tui_confirm_dialog-0.2.3/src/confirm_dialog.rs:23:41
|
23 | pub const YES: LazyLock = LazyLock::new(|| ButtonLabel {
| ^^^^^^^^
|
= note: see issue #109736 rust-lang/rust#109736 for more information
error[E0658]: use of unstable library feature 'lazy_cell'
--> /home/alexis/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tui_confirm_dialog-0.2.3/src/confirm_dialog.rs:29:16
|
29 | pub const NO: LazyLock = LazyLock::new(|| ButtonLabel {
| ^^^^^^^^^^^^^^^^^^^^^
|
= note: see issue #109736 rust-lang/rust#109736 for more information
error[E0658]: use of unstable library feature 'lazy_cell'
--> /home/alexis/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tui_confirm_dialog-0.2.3/src/confirm_dialog.rs:29:40
|
29 | pub const NO: LazyLock = LazyLock::new(|| ButtonLabel {
| ^^^^^^^^
|
= note: see issue #109736 rust-lang/rust#109736 for more information
error[E0658]: use of unstable library feature 'lazy_cell'
--> /home/alexis/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tui_confirm_dialog-0.2.3/src/confirm_dialog.rs:20:43
|
20 | static BUTTON_LABEL_RE: LazyLock = LazyLock::new(||Regex::new(r#"((\w))"#).unwrap());
| ^^^^^^^^^^^^^
|
= note: see issue #109736 rust-lang/rust#109736 for more information
error[E0658]: use of unstable library feature 'lazy_cell'
--> /home/alexis/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tui_confirm_dialog-0.2.3/src/confirm_dialog.rs:23:41
|
23 | pub const YES: LazyLock = LazyLock::new(|| ButtonLabel {
| ^^^^^^^^^^^^^
|
= note: see issue #109736 rust-lang/rust#109736 for more information
error[E0658]: use of unstable library feature 'lazy_cell'
--> /home/alexis/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tui_confirm_dialog-0.2.3/src/confirm_dialog.rs:29:40
|
29 | pub const NO: LazyLock = LazyLock::new(|| ButtonLabel {
| ^^^^^^^^^^^^^
|
= note: see issue #109736 rust-lang/rust#109736 for more information
For more information about this error, try rustc --explain E0658.
error: could not compile tui_confirm_dialog (lib) due to 10 previous errors
warning: build failed, waiting for other jobs to finish...
error: failed to compile lazyjj v0.4.2, intermediate artifacts can be found at /tmp/cargo-installgYPWoO.
To reuse those artifacts with a future compilation, set the environment variable CARGO_TARGET_DIR to that path.w
The text was updated successfully, but these errors were encountered:
Hi,
cargo install
fails with the log below. Usign--locked
does not help.Any idea ?
Thanks,
`error[E0658]: use of unstable library feature 'lazy_cell'
--> /home/alexis/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tui_confirm_dialog-0.2.3/src/confirm_dialog.rs:5:5
|
5 | use std::sync::LazyLock;
| ^^^^^^^^^^^^^^^^^^^
|
= note: see issue #109736 rust-lang/rust#109736 for more information
error[E0658]: use of unstable library feature 'lazy_cell'
--> /home/alexis/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tui_confirm_dialog-0.2.3/src/confirm_dialog.rs:20:25
|
20 | static BUTTON_LABEL_RE: LazyLock = LazyLock::new(||Regex::new(r#"((\w))"#).unwrap());
| ^^^^^^^^^^^^^^^
|
= note: see issue #109736 rust-lang/rust#109736 for more information
error[E0658]: use of unstable library feature 'lazy_cell'
--> /home/alexis/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tui_confirm_dialog-0.2.3/src/confirm_dialog.rs:20:43
|
20 | static BUTTON_LABEL_RE: LazyLock = LazyLock::new(||Regex::new(r#"((\w))"#).unwrap());
| ^^^^^^^^
|
= note: see issue #109736 rust-lang/rust#109736 for more information
error[E0658]: use of unstable library feature 'lazy_cell'
--> /home/alexis/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tui_confirm_dialog-0.2.3/src/confirm_dialog.rs:23:17
|
23 | pub const YES: LazyLock = LazyLock::new(|| ButtonLabel {
| ^^^^^^^^^^^^^^^^^^^^^
|
= note: see issue #109736 rust-lang/rust#109736 for more information
error[E0658]: use of unstable library feature 'lazy_cell'
--> /home/alexis/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tui_confirm_dialog-0.2.3/src/confirm_dialog.rs:23:41
|
23 | pub const YES: LazyLock = LazyLock::new(|| ButtonLabel {
| ^^^^^^^^
|
= note: see issue #109736 rust-lang/rust#109736 for more information
error[E0658]: use of unstable library feature 'lazy_cell'
--> /home/alexis/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tui_confirm_dialog-0.2.3/src/confirm_dialog.rs:29:16
|
29 | pub const NO: LazyLock = LazyLock::new(|| ButtonLabel {
| ^^^^^^^^^^^^^^^^^^^^^
|
= note: see issue #109736 rust-lang/rust#109736 for more information
error[E0658]: use of unstable library feature 'lazy_cell'
--> /home/alexis/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tui_confirm_dialog-0.2.3/src/confirm_dialog.rs:29:40
|
29 | pub const NO: LazyLock = LazyLock::new(|| ButtonLabel {
| ^^^^^^^^
|
= note: see issue #109736 rust-lang/rust#109736 for more information
error[E0658]: use of unstable library feature 'lazy_cell'
--> /home/alexis/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tui_confirm_dialog-0.2.3/src/confirm_dialog.rs:20:43
|
20 | static BUTTON_LABEL_RE: LazyLock = LazyLock::new(||Regex::new(r#"((\w))"#).unwrap());
| ^^^^^^^^^^^^^
|
= note: see issue #109736 rust-lang/rust#109736 for more information
error[E0658]: use of unstable library feature 'lazy_cell'
--> /home/alexis/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tui_confirm_dialog-0.2.3/src/confirm_dialog.rs:23:41
|
23 | pub const YES: LazyLock = LazyLock::new(|| ButtonLabel {
| ^^^^^^^^^^^^^
|
= note: see issue #109736 rust-lang/rust#109736 for more information
error[E0658]: use of unstable library feature 'lazy_cell'
--> /home/alexis/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tui_confirm_dialog-0.2.3/src/confirm_dialog.rs:29:40
|
29 | pub const NO: LazyLock = LazyLock::new(|| ButtonLabel {
| ^^^^^^^^^^^^^
|
= note: see issue #109736 rust-lang/rust#109736 for more information
For more information about this error, try
rustc --explain E0658
.error: could not compile
tui_confirm_dialog
(lib) due to 10 previous errorswarning: build failed, waiting for other jobs to finish...
error: failed to compile
lazyjj v0.4.2
, intermediate artifacts can be found at/tmp/cargo-installgYPWoO
.To reuse those artifacts with a future compilation, set the environment variable
CARGO_TARGET_DIR
to that path.wThe text was updated successfully, but these errors were encountered: