Skip to content

Commit

Permalink
Updates tantivy for bugfix in json value serializaton. (#1415)
Browse files Browse the repository at this point in the history
The target PR in tantivy is quickwit-oss/tantivy#1367

Closes #1411
  • Loading branch information
fulmicoton authored May 11, 2022
1 parent 283b26e commit b9ffb33
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion quickwit-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ quickwit-config = { version = "0.2.1", path = "../quickwit-config" }
tokio = { version = "1", features = ["full"] }
tokio-util = { version = "0.7", features = ["full"] }
rand = "0.8"
tantivy = { git = "https://github.com/quickwit-oss/tantivy", rev = "7f45a6a", default-features = false, features = [
tantivy = { git = "https://github.com/quickwit-oss/tantivy", rev = "cbd06ab1", default-features = false, features = [
"mmap",
"lz4-compression",
"quickwit",
Expand Down
2 changes: 1 addition & 1 deletion quickwit-directories/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ futures = "0.3"
serde = "1"
serde_cbor = "0.11"
serde_json = "1"
tantivy = { git = "https://github.com/quickwit-oss/tantivy", rev = "7f45a6a", default-features = false, features = [
tantivy = { git = "https://github.com/quickwit-oss/tantivy", rev = "cbd06ab1", default-features = false, features = [
"mmap",
"lz4-compression",
"quickwit",
Expand Down
4 changes: 2 additions & 2 deletions quickwit-doc-mapper/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ once_cell = "1.10"
regex = "1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tantivy = { git = "https://github.com/quickwit-oss/tantivy", rev = "7f45a6a", default-features = false, features = ["mmap", "lz4-compression", "quickwit"] }
tantivy-query-grammar = { git = "https://github.com/quickwit-oss/tantivy/", rev = "7f45a6a" }
tantivy = { git = "https://github.com/quickwit-oss/tantivy", rev = "cbd06ab1", default-features = false, features = ["mmap", "lz4-compression", "quickwit"] }
tantivy-query-grammar = { git = "https://github.com/quickwit-oss/tantivy/", rev = "cbd06ab1" }
thiserror = "1.0"
tracing = "0.1.29"
typetag = "0.1"
Expand Down
2 changes: 1 addition & 1 deletion quickwit-indexing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ rusoto_kinesis = { version = "0.47", default-features = false, features = ["rust
serde = "1"
serde_json = "1"
serde_yaml = "0.8"
tantivy = { git= "https://github.com/quickwit-oss/tantivy", rev="7f45a6a", default-features=false, features = ["mmap", "lz4-compression", "quickwit"] }
tantivy = { git= "https://github.com/quickwit-oss/tantivy", rev="cbd06ab1", default-features=false, features = ["mmap", "lz4-compression", "quickwit"] }
tempfile = "3.3"
thiserror = "1"
tokio = { version = "1", features = ["sync"] }
Expand Down
2 changes: 1 addition & 1 deletion quickwit-search/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ once_cell = "1"
opentelemetry = "0.17"
tracing-opentelemetry = "0.17"
rayon = "1"
tantivy = { git= "https://github.com/quickwit-oss/tantivy", rev="7f45a6a", default-features=false, features = ["mmap", "lz4-compression", "quickwit"] }
tantivy = { git= "https://github.com/quickwit-oss/tantivy", rev="cbd06ab1", default-features=false, features = ["mmap", "lz4-compression", "quickwit"] }

[dependencies.quickwit-cluster]
path = '../quickwit-cluster'
Expand Down
2 changes: 1 addition & 1 deletion quickwit-storage/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ futures = '0.3'
serde_json = "1"
base64 = '0.13'
tracing = "0.1.29"
tantivy = { git= "https://github.com/quickwit-oss/tantivy", rev="7f45a6a", default-features=false, features = ["mmap", "lz4-compression", "quickwit"] }
tantivy = { git= "https://github.com/quickwit-oss/tantivy", rev="cbd06ab1", default-features=false, features = ["mmap", "lz4-compression", "quickwit"] }
once_cell = '1'
regex = '1'
thiserror = '1'
Expand Down

0 comments on commit b9ffb33

Please sign in to comment.