[package] name = "morsels_indexer" version = "0.7.3" authors = ["Ze Yu "] edition = "2018" description = "A complete and more scalable pre-built index approach to client-side search." documentation = "https://morsels-search.com/morsels/" repository = "https://github.com/ang-zeyu/morsels" readme = "../../README.md" keywords = ["search"] categories = ["command-line-utilities"] license = "MIT" include = ["/src", "/search-ui-dist"] [[bin]] name = "morsels" path = "src/main.rs" [dependencies] bitvec = "1" crc32fast = "1.3" structopt = "0.3" crossbeam = "0.8" include_dir = "0.7" serde = { version = "1.0", features = ["derive"] } serde_json = "1" byteorder = "1" csv = "1.1" dashmap = "5" glob = "0.3" lazy_static = "1.4" log = { version = "0.4", features = ["max_level_info", "release_max_level_info"] } log4rs = "1.0" morsels_common = { path = "../morsels_common", version="=0.7.3", features = ["indexer"] } morsels_lang_ascii = { path = "../morsels_languages/morsels_lang_ascii", version="=0.7.3", features = ["indexer"] } morsels_lang_latin = { path = "../morsels_languages/morsels_lang_latin", version="=0.7.3", features = ["indexer"] } morsels_lang_chinese = { path = "../morsels_languages/morsels_lang_chinese", version="=0.7.3", features = ["indexer"] } num_cpus = "1" path-absolutize = { version = "3.0", features = ["lazy_static_cache"] } pathdiff = "0.2" path-slash = "0.2" pdf-extract = "0.6" regex = "1" rustc-hash = "1.1" scraper = "0.13" smartstring = "0.2.7" typetag = "0.1" walkdir = "2" [dev-dependencies] pretty_assertions = "0.7.2"