diff options
author | Martin Fischer <martin@push-f.com> | 2021-11-30 07:28:21 +0100 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2021-11-30 11:22:35 +0100 |
commit | baf1477c587fe22d27e94408cf2505d588ba007e (patch) | |
tree | f3e027e3c149cfeb7187a625756ea4b2de47c82a /Cargo.toml | |
parent | 25087cce997abc386f881648dfd39c83dfef7667 (diff) |
add spans feature
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -12,6 +12,7 @@ edition = "2018" [features] default = ["named-entities"] +spans = [] # resolve named entities like & named-entities = ["phf", "phf_codegen"] @@ -23,8 +24,13 @@ phf = { version = "0.9", optional = true } phf_codegen = { version = "0.9", optional = true } [dev-dependencies] +codespan-reporting = "0.11.1" criterion = "0.3" [[bench]] name = "html5ever" harness = false + +[package.metadata.docs.rs] +all-features = true +rustdoc-args = ["--cfg", "docsrs"] |