From 02691f244515289d7318eccdbe1756216ec41f8b Mon Sep 17 00:00:00 2001 From: Pascal Seitz Date: Mon, 4 Jul 2022 14:19:32 +0800 Subject: [PATCH] edition 2021 for subcrates --- bitpacker/Cargo.toml | 2 +- common/Cargo.toml | 2 +- fastfield_codecs/Cargo.toml | 2 +- ownedbytes/Cargo.toml | 2 +- query-grammar/Cargo.toml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bitpacker/Cargo.toml b/bitpacker/Cargo.toml index 6f9eb5ae5..48c1b8a1c 100644 --- a/bitpacker/Cargo.toml +++ b/bitpacker/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "tantivy-bitpacker" version = "0.2.0" -edition = "2018" +edition = "2021" authors = ["Paul Masurel "] license = "MIT" categories = [] diff --git a/common/Cargo.toml b/common/Cargo.toml index 6a7df405b..f7085d9c1 100644 --- a/common/Cargo.toml +++ b/common/Cargo.toml @@ -3,7 +3,7 @@ name = "tantivy-common" version = "0.3.0" authors = ["Paul Masurel ", "Pascal Seitz "] license = "MIT" -edition = "2018" +edition = "2021" description = "common traits and utility functions used by multiple tantivy subcrates" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/fastfield_codecs/Cargo.toml b/fastfield_codecs/Cargo.toml index 26d587487..1a52025ce 100644 --- a/fastfield_codecs/Cargo.toml +++ b/fastfield_codecs/Cargo.toml @@ -3,7 +3,7 @@ name = "fastfield_codecs" version = "0.2.0" authors = ["Pascal Seitz "] license = "MIT" -edition = "2018" +edition = "2021" description = "Fast field codecs used by tantivy" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/ownedbytes/Cargo.toml b/ownedbytes/Cargo.toml index 40a8cbf3e..b06db9f93 100644 --- a/ownedbytes/Cargo.toml +++ b/ownedbytes/Cargo.toml @@ -2,7 +2,7 @@ authors = ["Paul Masurel ", "Pascal Seitz "] name = "ownedbytes" version = "0.3.0" -edition = "2018" +edition = "2021" description = "Expose data as static slice" license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/query-grammar/Cargo.toml b/query-grammar/Cargo.toml index e4f2df98b..02c967bbc 100644 --- a/query-grammar/Cargo.toml +++ b/query-grammar/Cargo.toml @@ -9,7 +9,7 @@ homepage = "https://github.com/quickwit-oss/tantivy" repository = "https://github.com/quickwit-oss/tantivy" readme = "README.md" keywords = ["search", "information", "retrieval"] -edition = "2018" +edition = "2021" [dependencies] combine = {version="4", default-features=false, features=[] }