summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2020-09-30 12:53:02 +0200
committerLaurenz <laurmaedje@gmail.com>2020-09-30 12:53:02 +0200
commitee11f871756b1a17cf34b3ed5549eaddddc70f5e (patch)
tree2591b707d667d598c5ed1d088df6e17a9c8443de
parent3e791e3337b912ebc1f1771c4a1c0e4ed5723198 (diff)
Enable features by default 💜
-rw-r--r--Cargo.toml5
1 files changed, 3 insertions, 2 deletions
diff --git a/Cargo.toml b/Cargo.toml
index f6a0def9..31cbecc4 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -11,14 +11,15 @@ members = ["main"]
opt-level = 2
[dependencies]
-fontdock = { path = "../fontdock" }
+fontdock = { path = "../fontdock", default-features = false }
tide = { path = "../tide" }
ttf-parser = "0.8.2"
unicode-xid = "0.2"
serde = { version = "1", features = ["derive"], optional = true }
[features]
-serialize = []
+default = ["serialize", "fs"]
+serialize = ["serde"]
fs = ["fontdock/fs"]
[dev-dependencies]