devashishdxt/cli-table

Won't Compile

Closed this issue · 2 comments

Thanks for creating such an awesome module

Any idea how to fix this compilation error?

error: enum variants on type aliases are experimental
   --> src/format/cell.rs:103:9
    |
103 |         Self::Left
    |         ^^^^^^^^^^

error: enum variants on type aliases are experimental
   --> src/format/cell.rs:121:9
    |
121 |         Self::Top
    | 

Hi @nitaigao,

May I know the version of rust compiler are you using? Type aliases for enum variants were stabilised in 1.37.0

rust-lang/rust#61682

You can try running rustup update and then compile the code.

Let me know if you continue to face this issue after updating Rust version.

Thanks @devashishdxt. You were totally right, i had an old version of rust installed.

Many thanks for the detailed reply and sorry for the hassle.