Tyler Nickerson
Tyler Nickerson
@kdy1 I actually realized that the TypeScript compiler doesn't preserve comments in its AST either. I was looking at the [advanced demo](https://github.com/microsoft/tsdoc/blob/main/api-demo/src/advancedDemo.ts) for the TSDoc API and realized they use...
Just hit this same use case โ surprised there hasn't been any activity here :(
Hi @tinyc0der! It should be โ most of the heavy features like search, tokenization, and more are all behind Rust feature flags, so you can just import the features you...
Also, the first beta of v2.0 just landed on crates.io! https://crates.io/crates/odict
That's totally fair โ I chose tantivy as it seems to be the most mature full-text solution for Rust. I wonder if there's any kind of middle ground that could...
Just ran across this myself โ I almost wonder if this is intentional, because IMO it's not a great API to pass these settings. Also, based on the docs it...
Hey @jaxvanyang! Thanks for raising this. I agree, and it's something I've deliberated over, especially with the recently added FormKind and PronunciationKind enums, which face a similar dilemma. I do...
Yeah.. I was planning to change that aspect of the Python API ๐ As I mentioned on your PR I think, I do think using enums in unions could be...
Actually, according to the PyO3 website, they _do_ [actually support tuple enum variants](https://pyo3.rs/v0.23.4/class.html#defining-a-new-class), so doing an `Other(String)` variant in Python at least seems entirely doable. No idea yet though how...
For sure โ I think the Rust side is definitely doable in the interim and could get started on a PR, unless you wanted to. Though I'm inclined, in that...