mirror of
https://github.com/dankamongmen/notcurses.git
synced 2024-11-02 09:40:15 +00:00
55d49a43f6
- modify ncmenu constructor Accept &mut[] instead of Vec<> to avoid FFI related problems. Furthermore, from rust 1.48 it's easy to convert a Vec into an array using the std::convert::TryInto trait. - fix ncmenu method names. - fix & refactor Notcurses contructors; add `with_debug` constructor. - make NcPlane.set_base receive a char instead of a reference, since it's copy. - add `rre` cargo alias for running examples on release.
15 lines
337 B
TOML
15 lines
337 B
TOML
[alias]
|
|
d = "doc --no-deps"
|
|
do = "doc --no-deps --open"
|
|
|
|
re = "run --example"
|
|
rre = "run --release --example"
|
|
|
|
rqe = "run --quiet --example "
|
|
req = "rqe"
|
|
|
|
# TEST
|
|
# fix IO errors: https://github.com/dankamongmen/notcurses/issues/766
|
|
t = "test -- --test-threads 1 --nocapture"
|
|
t_all = "test --no-fail-fast -- --test-threads 1 --nocapture"
|