summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml22
1 files changed, 12 insertions, 10 deletions
diff --git a/Cargo.toml b/Cargo.toml
index e0563b5c..e0495df4 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,27 +1,29 @@
[package]
name = "typstc"
version = "0.1.0"
-authors = ["Laurenz Mädje <laurmaedje@gmail.com>"]
+authors = ["The Typst Project Developers"]
edition = "2018"
+[workspace]
+members = ["main"]
+
[dependencies]
async-trait = "0.1"
fontdock = { path = "../fontdock", features = ["fs", "serialize"] }
-serde = { version = "1", features = ["derive"] }
-serde_json = "1"
-smallvec = "1"
+serde = { version = "1", features = ["derive"], optional = true }
tide = { path = "../tide" }
ttf-parser = "0.8.2"
unicode-xid = "0.2"
-futures-executor = { version = "0.3", optional = true }
-[[bin]]
-name = "typst"
-path = "src/bin/main.rs"
-required-features = ["futures-executor"]
+[features]
+serialize = []
+
+[dev-dependencies]
+futures-executor = "0.3"
+serde_json = "1"
[[test]]
name = "typeset"
path = "tests/src/typeset.rs"
harness = false
-required-features = ["futures-executor"]
+required-features = ["serialize"]