Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,14 @@ win_crlf = []

[[bin]]
name = "main"
edition = "2018"
path = "src/main.rs"

[lib]
name = "prettytable"

[dependencies]
unicode-width = "0.1"
term = "0.7"
unicode-width = "0.2"
term = "1"
lazy_static = "1.4"
is-terminal = "0.4"
encode_unicode = "1.0"
Expand Down
10 changes: 9 additions & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,20 @@
environment:
matrix:
- TARGET: i686-pc-windows-gnu
ABI: gnu
ARCH: i686
- TARGET: i686-pc-windows-msvc
ABI: msvc
ARCH: i686
- TARGET: x86_64-pc-windows-gnu
ABI: gnu
ARCH: x86_64
- TARGET: x86_64-pc-windows-msvc
ABI: msvc
ARCH: x86_64

install:
- ps: Start-FileDownload "https://static.rust-lang.org/rustup/dist/x86_64-pc-windows-msvc/rustup-init.exe"
- ps: Start-FileDownload "https://static.rust-lang.org/rustup/dist/%ARCH%-pc-windows-%ABI%/rustup-init.exe"
- rustup-init.exe -y --default-host %TARGET% --default-toolchain stable
- set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
- rustc -V
Expand Down
Loading