summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2020-10-12 17:10:01 +0200
committerLaurenz <laurmaedje@gmail.com>2020-10-12 17:10:01 +0200
commit38157b0e0cbab22dc3f5fa5cc66d9b673a18a55b (patch)
tree967dab30f04537b93126586dbb7f7b0d166290e4 /Cargo.toml
parente94627721db89c3b08aa17f54d59d19a09f7816f (diff)
Synchronous layout 🪀
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml14
1 files changed, 6 insertions, 8 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 96385771..21c36b6d 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -7,11 +7,6 @@ edition = "2018"
[workspace]
members = ["main"]
-[features]
-default = ["serialize", "fs"]
-serialize = ["serde"]
-fs = ["fontdock/fs"]
-
[lib]
bench = false
@@ -21,19 +16,22 @@ opt-level = 2
[profile.release]
lto = true
+[features]
+default = ["fs"]
+fs = ["fontdock/fs"]
+
[dependencies]
-async-trait = "0.1"
fontdock = { path = "../fontdock", default-features = false }
tide = { path = "../tide" }
ttf-parser = "0.8.2"
unicode-xid = "0.2"
+
+# feature = "serde"
serde = { version = "1", features = ["derive"], optional = true }
[dev-dependencies]
criterion = "0.3"
-futures-executor = "0.3"
kurbo = "0.6.3"
-serde_json = "1"
raqote = { version = "0.8", default-features = false }
[[test]]