Log for tique/Cargo.toml
-
Prepare for v0.4.0 release by Caio 5 years ago
-
Rename tique's `unstable` feature to `queryparser` 💬 by Caio 5 years ago
... And somehow `tique` can't be built because `cantine` wants a feature that stopped existing? That kinda diminishes the usefulness of workspaces.
-
Ensure it's hard to cause an Err() with this parser by Caio 5 years ago
-
Release tique-0.3.0 by Caio 5 years ago
-
Upgrade to tantivy 0.12 by Caio 5 years ago
-
Prepare for 0.2.0 release by Caio 5 years ago
-
Swap homepage and repository values 💬 by Caio 5 years ago
From looking at the rendered output on crates.io/docs.rs, I think that's a better definition for each
-
Bump to 0.1.1 💬 by Caio 5 years ago
Just a trivial documentation update
-
Add more metadata to Cargo.toml by Caio 5 years ago
-
Remove everything `proc_macro` from what will go public 💬 by Caio 5 years ago
I thought the "proc macros need to live in a separate crate" problem was only a minor annoyance until now: publishing a crate that uses it implies publishing the proc macro crate too. This patch works around said annoyance by (mostly manually) reverting the move to the `tique` module. Now `cantine_derive` is self-contained.
-
Revert "Move `tique_derive` into the `tique` module" 💬 by Caio 5 years ago
This reverts commit 813bccbe0c5974337dceff3e348c76ecf23138d7.
-
Move `tique_derive` into the `tique` module by Caio 5 years ago
-
Split compilation features into default and unstable by Caio 5 years ago
-
Get rid of the 'crates/' subdirectory 💬 by Caio 6 years ago
Just a `git mv crates/* .` and minor adjustments `Cargo.toml` and `.gitignore` to point at the new locations
-
Move derive functionality to the tique module 💬 by Caio 6 years ago
I needed a public place to store the new RangeStats struct as it's independent from any input. This patch moves the `cantine_derive` mod into the `tique` subgroup with hopes that it will force me to think of: 1. A better name than `FilterAndAggregation` 2. A way to expose the generated structs instead of requiring knowledge that the output structs are prefixed by the source name
-
Update tantivy to 0.11 by Caio 6 years ago
-
Revert "Build against tantivy's upstream repository" 💬 by Caio 6 years ago
This reverts commit 3392d944b5536feff32db026231dee2dceb3e9c2.
-
Build against tantivy's upstream repository 💬 by Caio 6 years ago
This is hopefully temporary. I wanna push the float-related stuff forward because otherwise I'll keep coming up with interesting-but- useless-for-me-now cases like what I just did with the database :P I had to touch the QueryParser code due to changes in the public api: * `Field` now has a constructor instead of a public inner field * `BoxedTokenizer` is a struct wrapping the actual box dance (thanks!) Direct link to build head: https://github.com/tantivy-search/tantivy/commit/b9896c496207ecff14a1ffc713dc81d009500b10 -
Remove unneeded tests by Caio 6 years ago
-
Zerocopy is only used on tests now by Caio 6 years ago
-
Unify SearchMarker and Scored by Caio 6 years ago
-
Don't add debug info to `--release` artifacts 💬 by Caio 6 years ago
No need for this in the library. The app will have it.
-
Verify it's hard to `panic!` the QueryParser 💬 by Caio 6 years ago
This patch simply uses `quickcheck` to generate a bunch of example strings and verifies that it doesn't cause a process crash.
-
Drop database: Moved to another repo by Caio 6 years ago
-
Rename and cleanup 💬 by Caio 6 years ago
This is now a lib. The app stuff will move somewhere else.
-
Add tools for loading and checking data 💬 by Caio 6 years ago
> USAGE: > cantine [SUBCOMMAND] > > FLAGS: > -h, --help Prints help information > -V, --version Prints version information > > SUBCOMMANDS: > check_database Verifies input from STDIN can be found in the database > help Prints this message or the help of the given subcommand(s) > load Loads data from STDIN into the search index We can drive tantivy with features without having to hold it now, I'm happy with it.
-
Unlock dependencies minors 💬 by Caio 6 years ago
No effective change as evidenced by the lack of a patch for Cargo.lock.
-
Give log operations more structure via zerocopy 💬 by Caio 6 years ago
Now this looks less awkward :)
-
Add warp dependency 💬 by Caio 6 years ago
I think I prefer warp's style over actix's
-
Use serde + bincode instead of flatbuffers 💬 by Caio 6 years ago
Serde does zero-copy reads since 1.0.0, servo's bincode is excellent. No more reasons for preferring flatbuffers. <3 TODO Verify the zero copy thing