summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2020-08-02 11:22:49 +0200
committerLaurenz <laurmaedje@gmail.com>2020-08-02 11:58:47 +0200
commit2188ef6b899cc10c84ed985e9ad9049fcc3eb662 (patch)
tree08d3ad87f2700ed0c6d0e5c15bf5dce4e7efa627 /Cargo.toml
parentefb78831a7a9fe8c807c326a1bfa338b50579938 (diff)
Update Cargo.toml and CI configuration ⚙
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml19
1 files changed, 7 insertions, 12 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 2d2629ca..e0563b5c 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -5,21 +5,16 @@ authors = ["Laurenz Mädje <laurmaedje@gmail.com>"]
edition = "2018"
[dependencies]
-fontdock = { path = "../fontdock", features = ["serialize"] }
-tide = { path = "../tide" }
-byteorder = "1"
-smallvec = "1"
-unicode-xid = "0.2"
async-trait = "0.1"
-ttf-parser = "0.8.2"
+fontdock = { path = "../fontdock", features = ["fs", "serialize"] }
serde = { version = "1", features = ["derive"] }
-serde_json = { version = "1", optional = true }
+serde_json = "1"
+smallvec = "1"
+tide = { path = "../tide" }
+ttf-parser = "0.8.2"
+unicode-xid = "0.2"
futures-executor = { version = "0.3", optional = true }
-[features]
-default = ["fs", "futures-executor", "serde_json"]
-fs = ["fontdock/fs"]
-
[[bin]]
name = "typst"
path = "src/bin/main.rs"
@@ -29,4 +24,4 @@ required-features = ["futures-executor"]
name = "typeset"
path = "tests/src/typeset.rs"
harness = false
-required-features = ["futures-executor", "serde_json"]
+required-features = ["futures-executor"]