about summary refs log tree commit diff
path: root/indexer/Cargo.toml (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Indexer: Stem words prior to adding/searching themBaitinq2022-11-111-0/+1
|
* Indexer: Decode html entities for website title and descriptionBaitinq2022-11-061-1/+1
| | | | Maybe we should do it for all the website's content too? :))
* Indexer: Add logging with env_loggerBaitinq2022-11-061-0/+2
|
* Indexer+Frontend: Integrate with actixBaitinq2022-11-051-0/+1
|
* Indexer: Actix: Use the same service handler with multiple routesBaitinq2022-11-051-0/+1
|
* Indexer: Use kuchiki to split html content into wordsBaitinq2022-10-301-0/+1
| | | | This is better than html2text when using non-ascii characters.
* Misc: Remove unneeded dependenciesBaitinq2022-10-301-2/+0
|
* Misc: Add local lib crate to share common structsBaitinq2022-10-301-0/+1
|
* Indexer: Setup permissive CORSBaitinq2022-10-271-1/+2
|
* Indexer: Return json from the /search endpointBaitinq2022-10-271-0/+1
|
* Indexer: Use CrawledResource structure as values in the reverse index dbBaitinq2022-10-251-0/+1
| | | | This will allow us to integrate priorities and other improvements.
* Indexer: Implement basic reverse index searching and addingBaitinq2022-10-221-0/+2
| | | | Very inefficient but kind of functional:::)))))))
* Indexer: Add skeleton http rest endpoint functionalityBaitinq2022-10-211-0/+2
| | | | /search and /resource endpoint.
* Misc: Separate OSSE into componentsBaitinq2022-10-191-0/+12
We now have a cargo workspace with the Crawler, Client and Indexer packages.