mirror of
https://github.com/quickwit-oss/tantivy.git
synced 2026-01-04 08:12:54 +00:00
Compare commits
2 Commits
columnar-c
...
0.13.3
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
12730af008 | ||
|
|
bca00ad850 |
@@ -1,3 +1,7 @@
|
|||||||
|
Tantivy 0.13.3
|
||||||
|
======================
|
||||||
|
Bugfix. Avoid relying on serde's reexport of PhantomData. (#975)
|
||||||
|
|
||||||
Tantivy 0.13.2
|
Tantivy 0.13.2
|
||||||
===================
|
===================
|
||||||
Bugfix. Acquiring a facet reader on a segment that does not contain any
|
Bugfix. Acquiring a facet reader on a segment that does not contain any
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "tantivy"
|
name = "tantivy"
|
||||||
version = "0.13.2"
|
version = "0.13.3"
|
||||||
authors = ["Paul Masurel <paul.masurel@gmail.com>"]
|
authors = ["Paul Masurel <paul.masurel@gmail.com>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
categories = ["database-implementations", "data-structures"]
|
categories = ["database-implementations", "data-structures"]
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ use crate::DocAddress;
|
|||||||
use crate::DocId;
|
use crate::DocId;
|
||||||
use crate::SegmentLocalId;
|
use crate::SegmentLocalId;
|
||||||
use crate::SegmentReader;
|
use crate::SegmentReader;
|
||||||
use serde::export::PhantomData;
|
use std::marker::PhantomData;
|
||||||
use std::cmp::Ordering;
|
use std::cmp::Ordering;
|
||||||
use std::collections::BinaryHeap;
|
use std::collections::BinaryHeap;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user