diff options
| author | Laurenz <laurmaedje@gmail.com> | 2020-10-12 17:10:01 +0200 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2020-10-12 17:10:01 +0200 |
| commit | 38157b0e0cbab22dc3f5fa5cc66d9b673a18a55b (patch) | |
| tree | 967dab30f04537b93126586dbb7f7b0d166290e4 /Cargo.toml | |
| parent | e94627721db89c3b08aa17f54d59d19a09f7816f (diff) | |
Synchronous layout 🪀
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 14 |
1 files changed, 6 insertions, 8 deletions
@@ -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]] |
