summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2020-02-03 15:05:34 +0100
committerLaurenz <laurmaedje@gmail.com>2020-02-03 15:05:34 +0100
commitec60795575c29ee7fc2ea7507cfcc38958fe67bf (patch)
tree89c47763188e24d6c9ef7afd9148949716c6b277 /Cargo.toml
parent3150fd56437ecf8b2a5902c18e3f9ace800b768c (diff)
Port tests 🚁
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml15
1 files changed, 5 insertions, 10 deletions
diff --git a/Cargo.toml b/Cargo.toml
index df49e0e7..e2143840 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -3,7 +3,7 @@ name = "typstc"
version = "0.1.0"
authors = ["Laurenz Mädje <laurmaedje@gmail.com>"]
edition = "2018"
-build = "build.rs"
+# build = "build.rs"
[dependencies]
toddle = { path = "../toddle", features = ["query"], default-features = false }
@@ -22,15 +22,10 @@ fs-provider = ["toddle/fs-provider"]
[[bin]]
name = "typst"
path = "src/bin/main.rs"
-required-features = ["futures-executor"]
+required-features = ["fs-provider", "futures-executor"]
[[test]]
-name = "layouter"
-path = "tests/src/layouter.rs"
-harness = false
-required-features = ["futures-executor"]
-
-[[test]]
-name = "parser"
-path = "tests/src/parser.rs"
+name = "typeset"
+path = "tests/src/typeset.rs"
harness = false
+required-features = ["fs-provider", "futures-executor"]