Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
702 views
in Technique[技术] by (71.8m points)

terminal - How to make Rust cursive's examples work on Windows?

Rust cursive is a Rust TUI framework. It states that you can switch backends and some of which are Windows supported. However, I can't make it work. When I run the following command (grabbed from here) I got an error:

$ git clone https://github.com/gyscos/cursive
$ cd cursive/examples

$ cargo run -v --no-default-features --features pancurses-backend --example select
error: Package `cursive-examples v0.1.1-alpha.0 (C:my_projectscursiveexamples)`
does not have the feature `pancurses-backend`

What's the correct way to run these examples on Windows?

question from:https://stackoverflow.com/questions/65834894/how-to-make-rust-cursives-examples-work-on-windows

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

As the error says, the examples package does not have a pancurses-backend feature, which if you look in examples/Cargo.toml is correct. The pancurses-backend feature is actually located in the Cargo.toml for cursive.

So to enable it, you have to do --features cursive/pancurses-backend instead.

While the directory is somewhat misleadingly called examples. You can't use --example in this case, as they're not examples in the Cargo sense. Instead you need to use --bin.

cargo run -v --no-default-features --features cursive/pancurses-backend --bin select

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...