glint icon indicating copy to clipboard operation
glint copied to clipboard

Failed to Install 0.4.0

Open plus7wist opened this issue 4 years ago • 3 comments

I have tried to install this from cargo:

cargo install -f glint --version 0.4.0

cargo tells me:

error[E0599]: no method named `ansi_code` found for type `crossterm_terminal::Clear` in the current scope
   --> /home/xxxxxx/yyyyyyyyyyyyyyy/glint-0.4.0/src/term_buffer.rs:135:9
    |
135 |         ct::queue!(self.stdout, ct::Clear(ct::ClearType::UntilNewLine)).unwrap();
    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ method not found in `crossterm_terminal::Clear`
    |
    = help: items from traits can only be used if the trait is in scope
    = note: the following trait is implemented but not in scope; perhaps add a `use` for it:
            `use crossterm_utils::command::Command;`
    = note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)

error[E0599]: no method named `ansi_code` found for type `crossterm_terminal::Clear` in the current scope
   --> /home/xxxxxx/yyyyyyyyyyyyyyy/glint-0.4.0/src/term_buffer.rs:211:9
    |
211 |         ct::queue!(self.stdout, ct::Clear(ct::ClearType::FromCursorDown)).unwrap();
    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ method not found in `crossterm_terminal::Clear`
    |
    = help: items from traits can only be used if the trait is in scope
    = note: the following trait is implemented but not in scope; perhaps add a `use` for it:
            `use crossterm_utils::command::Command;`
    = note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)

error: aborting due to 2 previous errors

For more information about this error, try `rustc --explain E0599`.
error: failed to compile `glint v0.4.0`, intermediate artifacts can be found at `/tmp/cargo-installSp1q2u`

Caused by:
  could not compile `glint`.

The same error occors if I clone this repo, checkout tag 0.4.0, and run cargo install --path ..

But, it's ok to build that tag use cargo build --release. I don't understand why that happened. Can anyone help me?

I am using cargo version cargo 1.40.0 (bc8e4c8be 2019-11-22).

plus7wist avatar Jan 19 '20 09:01 plus7wist

Hey, thanks for reporting this.

I asked the rust channel on freenode, and it appears a patch release of a dependency caused two versions of a trait to be included. For now, the workaround is to add --locked to the install command, until I have time to upgrade to a new crossterm version here.

cargo install glint --locked

Updated the readme.

brigand avatar Jan 19 '20 20:01 brigand

Thank you @brigand, for your help.

I love this tool ;)

plus7wist avatar Jan 20 '20 01:01 plus7wist

@plus7wist https://git.io/J2m1C

theskillwithin avatar Jun 27 '23 14:06 theskillwithin