Files
diskonaut/Cargo.toml
pm100 929f759f63 feat(platform): windows version (#74)
* init checkin

* tests now compile

* Update linux.rs

* fixed linux build

* fmt

* most tests pass

* all tests pass

* reinstate delete after test

* remove old snaps

* oops on the crossterm dep

* fix fmt

* add windows test to travis

* travis windows tests linux messed up term after q

* fmt

* clean as per PR

* more pr clean

* tests done on windows

* oops

* non windows tests

* more cleanup

* fmt

* one last clean

* linux->unix

* linux->unix

* style(cleanup): minor fixes

* style(cleanup): moar minor fixes

Co-authored-by: Aram Drevekenin <aram@poor.dev>
2020-09-23 16:12:12 +02:00

26 lines
664 B
TOML

[package]
name = "diskonaut"
description = "Terminal disk space visual navigator"
version = "0.10.0"
authors = ["Aram Drevekenin <aram@poor.dev>"]
readme = "README.md"
homepage = "https://github.com/imsnif/diskonaut"
repository = "https://github.com/imsnif/diskonaut"
license = "MIT"
edition = "2018"
[dependencies]
tui = {version="0.11", default-features = false, features = ['crossterm'] }
crossterm = "0.17"
failure = "0.1"
jwalk = "0.5"
structopt = "0.3"
filesize = "0.2.0"
unicode-width = "0.1.7"
nix = "0.17.0"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["securitybaseapi","debugapi"] }
[dev-dependencies]
insta = "0.16.0"