aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
diff options
context:
space:
mode:
authorcyqsimon <28627918+cyqsimon@users.noreply.github.com>2022-07-22 16:46:55 +0000
committercyqsimon <28627918+cyqsimon@users.noreply.github.com>2022-08-22 10:51:17 +0000
commit3c0d0cfffe6a647ff91bd74ebe0c3085032fc646 (patch)
tree043fb3b297829b8818b9af5144728e1835535ab1 /Cargo.toml
parentUse `mime` for content type (diff)
downloadminiserve-3c0d0cfffe6a647ff91bd74ebe0c3085032fc646.tar.gz
miniserve-3c0d0cfffe6a647ff91bd74ebe0c3085032fc646.zip
Disable broken tests for Windows
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml5
1 files changed, 4 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 1bac97e..1876320 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -69,7 +69,6 @@ tls = ["rustls", "rustls-pemfile", "actix-web/rustls"]
[dev-dependencies]
assert_cmd = "2"
assert_fs = "1"
-fake-tty = "0.2.0"
predicates = "2"
pretty_assertions = "1.2"
regex = "1"
@@ -78,5 +77,9 @@ rstest = "0.15"
select = "0.5"
url = "2"
+[target.'cfg(not(windows))'.dev-dependencies]
+# fake_tty does not support Windows for now
+fake-tty = "0.2.0"
+
[build-dependencies]
grass = "0.11"