You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
725B

  1. [package]
  2. name = "search"
  3. version = "0.1.0"
  4. authors = ["Vincent Prouillet <prouillet.vincent@gmail.com>"]
  5. edition = "2018"
  6. [dependencies]
  7. elasticlunr-rs = "2"
  8. ammonia = "3"
  9. lazy_static = "1"
  10. tantivy = { version = "0.12", optional = true }
  11. isolang = { version = "1.0", optional = true }
  12. serde = { version = "1.0", optional = true }
  13. serde_derive = { version = "1.0", optional = true }
  14. serde_json = { version = "1.0", optional = true }
  15. num_cpus = { version = "1.12", optional = true }
  16. chrono = { version = "0.4", optional = true }
  17. errors = { path = "../errors" }
  18. library = { path = "../library" }
  19. [features]
  20. default = []
  21. tantivy-indexing = ["isolang", "serde", "serde_derive", "serde_json", "num_cpus", "tantivy", "chrono"]