diff --git a/Cargo.lock b/Cargo.lock index 3c23cec8a3e..dbcadb93cdb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2159,7 +2159,7 @@ checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3" [[package]] name = "quickwit-actors" -version = "0.1.0" +version = "0.2.0" dependencies = [ "anyhow", "async-trait", @@ -2173,7 +2173,7 @@ dependencies = [ [[package]] name = "quickwit-cli" -version = "0.1.0" +version = "0.2.0" dependencies = [ "anyhow", "assert_cmd", @@ -2222,7 +2222,7 @@ dependencies = [ [[package]] name = "quickwit-cluster" -version = "0.1.0" +version = "0.2.0" dependencies = [ "anyhow", "async-trait", @@ -2244,7 +2244,7 @@ dependencies = [ [[package]] name = "quickwit-common" -version = "0.1.0" +version = "0.2.0" dependencies = [ "anyhow", "colored", @@ -2263,7 +2263,7 @@ dependencies = [ [[package]] name = "quickwit-config" -version = "0.1.0" +version = "0.2.0" dependencies = [ "anyhow", "byte-unit", @@ -2281,7 +2281,7 @@ dependencies = [ [[package]] name = "quickwit-core" -version = "0.1.0" +version = "0.2.0" dependencies = [ "anyhow", "async-trait", @@ -2310,7 +2310,7 @@ dependencies = [ [[package]] name = "quickwit-directories" -version = "0.1.0" +version = "0.2.0" dependencies = [ "anyhow", "async-trait", @@ -2332,7 +2332,7 @@ dependencies = [ [[package]] name = "quickwit-doc-mapper" -version = "0.1.0" +version = "0.2.0" dependencies = [ "anyhow", "base64", @@ -2355,7 +2355,7 @@ dependencies = [ [[package]] name = "quickwit-indexing" -version = "0.1.0" +version = "0.2.0" dependencies = [ "anyhow", "arc-swap", @@ -2397,7 +2397,7 @@ dependencies = [ [[package]] name = "quickwit-metastore" -version = "0.1.0" +version = "0.2.0" dependencies = [ "anyhow", "async-trait", @@ -2428,7 +2428,7 @@ dependencies = [ [[package]] name = "quickwit-proto" -version = "0.1.0" +version = "0.2.0" dependencies = [ "prost", "prost-build", @@ -2439,7 +2439,7 @@ dependencies = [ [[package]] name = "quickwit-search" -version = "0.1.0" +version = "0.2.0" dependencies = [ "anyhow", "assert-json-diff", @@ -2480,7 +2480,7 @@ dependencies = [ [[package]] name = "quickwit-serve" -version = "0.1.0" +version = "0.2.0" dependencies = [ "anyhow", "assert-json-diff", @@ -2520,7 +2520,7 @@ dependencies = [ [[package]] name = "quickwit-storage" -version = "0.1.0" +version = "0.2.0" dependencies = [ "anyhow", "async-trait", @@ -2551,7 +2551,7 @@ dependencies = [ [[package]] name = "quickwit-swim" -version = "0.1.2" +version = "0.2.0" dependencies = [ "bincode", "flume", @@ -2568,7 +2568,7 @@ dependencies = [ [[package]] name = "quickwit-telemetry" -version = "0.1.0" +version = "0.2.0" dependencies = [ "async-trait", "encoding_rs", diff --git a/Cargo.toml b/Cargo.toml index 991bc078d9e..e41d6cc181b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,6 +2,7 @@ members = [ "quickwit-actors", + "quickwit-common", "quickwit-cli", "quickwit-cluster", "quickwit-config", diff --git a/quickwit-actors/Cargo.toml b/quickwit-actors/Cargo.toml index 346e38c43cd..6d321326b4c 100644 --- a/quickwit-actors/Cargo.toml +++ b/quickwit-actors/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "quickwit-actors" -version = "0.1.0" +version = "0.2.0" authors = ["Quickwit, Inc. "] edition = "2021" license = 'AGPL-3.0-or-later' # For a commercial, license, contact hello@quickwit.io @@ -20,4 +20,4 @@ flume = "0.10" futures = "0.3" tracing = "0.1.29" thiserror = "1" -quickwit-common = {path="../quickwit-common", version="0.1"} +quickwit-common = {path="../quickwit-common", version = "0.2"} diff --git a/quickwit-cli/Cargo.toml b/quickwit-cli/Cargo.toml index 61a56e6e1aa..dc6eeafcf37 100644 --- a/quickwit-cli/Cargo.toml +++ b/quickwit-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "quickwit-cli" -version = "0.1.0" +version = "0.2.0" authors = ["Quickwit, Inc. "] edition = "2021" license = "AGPL-3.0-or-later" # For a commercial, license, contact hello@quickwit.io @@ -23,19 +23,19 @@ async-trait = "0.1" anyhow = "1" byte-unit = { version = "4", default-features = false, features = ["serde"] } clap = { version = "=3.0.0-beta.5", features = ["yaml"] } -quickwit-actors = { version = "0.1.0", path = "../quickwit-actors" } -quickwit-core = { version = "0.1.0", path = "../quickwit-core" } -quickwit-directories = { version = "0.1.0", path = "../quickwit-directories" } -quickwit-common = { version = "0.1.0", path = "../quickwit-common" } -quickwit-config = { version = "0.1.0", path = "../quickwit-config" } -quickwit-metastore = { version = "0.1.0", path = "../quickwit-metastore" } -quickwit-storage = { version = "0.1.0", path = "../quickwit-storage" } -quickwit-doc-mapper = { version = "0.1.0", path = "../quickwit-doc-mapper" } -quickwit-indexing = { version = "0.1.0", path = "../quickwit-indexing" } -quickwit-search = { version = "0.1", path = "../quickwit-search" } -quickwit-serve = { version = "0.1", path = "../quickwit-serve" } -quickwit-telemetry = { version = "0.1", path = "../quickwit-telemetry" } -quickwit-proto = { version = "0.1", path = "../quickwit-proto" } +quickwit-actors = { version = "0.2.0", path = "../quickwit-actors" } +quickwit-core = { version = "0.2.0", path = "../quickwit-core" } +quickwit-directories = { version = "0.2.0", path = "../quickwit-directories" } +quickwit-common = { version = "0.2.0", path = "../quickwit-common" } +quickwit-config = { version = "0.2.0", path = "../quickwit-config" } +quickwit-metastore = { version = "0.2.0", path = "../quickwit-metastore" } +quickwit-storage = { version = "0.2.0", path = "../quickwit-storage" } +quickwit-doc-mapper = { version = "0.2.0", path = "../quickwit-doc-mapper" } +quickwit-indexing = { version = "0.2.0", path = "../quickwit-indexing" } +quickwit-search = { version = "0.2", path = "../quickwit-search" } +quickwit-serve = { version = "0.2", path = "../quickwit-serve" } +quickwit-telemetry = { version = "0.2", path = "../quickwit-telemetry" } +quickwit-proto = { version = "0.2", path = "../quickwit-proto" } tabled = "0.4" tracing = "0.1.29" tracing-subscriber = {version="0.3", features=["time", "std", "env-filter"]} diff --git a/quickwit-cluster/Cargo.toml b/quickwit-cluster/Cargo.toml index 273cc753383..e82610f5353 100644 --- a/quickwit-cluster/Cargo.toml +++ b/quickwit-cluster/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "quickwit-cluster" -version = "0.1.0" +version = "0.2.0" authors = ['Quickwit, Inc. '] edition = "2021" license = "AGPL-3.0-or-later" # For a commercial, license, contact hello@quickwit.io @@ -13,8 +13,8 @@ documentation = "https://quickwit.io/docs/" anyhow = "1.0" async-trait = "0.1" flume = "0.10" -quickwit-common = { version = "0.1.0", path = "../quickwit-common"} -quickwit-swim = { version = "0.1", path = "../quickwit-swim" } +quickwit-common = { version = "0.2.0", path = "../quickwit-common"} +quickwit-swim = { version = "0.2", path = "../quickwit-swim" } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" thiserror = "1.0" @@ -24,7 +24,7 @@ tonic = "0.6" tracing = "0.1.29" uuid = "0.8" -quickwit-proto = { version = "0.1.0", path = "../quickwit-proto"} +quickwit-proto = { version = "0.2.0", path = "../quickwit-proto"} [dev-dependencies] itertools = '0.10' diff --git a/quickwit-common/Cargo.toml b/quickwit-common/Cargo.toml index 89e2440c8a2..6b54680f6a0 100644 --- a/quickwit-common/Cargo.toml +++ b/quickwit-common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "quickwit-common" -version = "0.1.0" +version = "0.2.0" authors = ['Quickwit, inc '] edition = "2021" license = "AGPL-3.0-or-later" # For a commercial, license, contact hello@quickwit.io diff --git a/quickwit-config/Cargo.toml b/quickwit-config/Cargo.toml index f4823e8c5a0..d617b22f461 100644 --- a/quickwit-config/Cargo.toml +++ b/quickwit-config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "quickwit-config" -version = "0.1.0" +version = "0.2.0" authors = ["Quickwit, Inc. "] edition = "2021" license = "AGPL-3.0-or-later" # For a commercial license, contact hello@quickwit.io @@ -14,8 +14,8 @@ anyhow = "1" byte-unit = { version = "4", default-features = false, features = ["serde"] } json_comments = "0.2" once_cell = "1.8.0" -quickwit-common = { version = "0.1.0", path = "../quickwit-common" } -quickwit-doc-mapper = { version = "0.1.0", path = "../quickwit-doc-mapper" } +quickwit-common = { version = "0.2.0", path = "../quickwit-common" } +quickwit-doc-mapper = { version = "0.2.0", path = "../quickwit-doc-mapper" } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" serde_yaml = "0.8" diff --git a/quickwit-core/Cargo.toml b/quickwit-core/Cargo.toml index 8f66c3db5e1..ae8d45f7167 100644 --- a/quickwit-core/Cargo.toml +++ b/quickwit-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "quickwit-core" -version = "0.1.0" +version = "0.2.0" authors = ["Quickwit, Inc. "] edition = "2021" license = "AGPL-3.0-or-later" # For a commercial, license, contact hello@quickwit.io @@ -15,12 +15,12 @@ anyhow = "1.0" async-trait = "0.1" byte-unit = { version = "4", default-features = false, features = ["serde"] } quickwit-actors = {path="../quickwit-actors"} -quickwit-indexing = { version = "0.1.0", path = "../quickwit-indexing" } +quickwit-indexing = { version = "0.2.0", path = "../quickwit-indexing" } quickwit-common = {path="../quickwit-common"} -quickwit-doc-mapper = { version = "0.1.0", path = "../quickwit-doc-mapper" } -quickwit-metastore = { version = "0.1.0", path = "../quickwit-metastore" } -quickwit-directories = { version = "0.1.0", path = "../quickwit-directories" } -quickwit-storage = { version = "0.1.0", path = "../quickwit-storage" } +quickwit-doc-mapper = { version = "0.2.0", path = "../quickwit-doc-mapper" } +quickwit-metastore = { version = "0.2.0", path = "../quickwit-metastore" } +quickwit-directories = { version = "0.2.0", path = "../quickwit-directories" } +quickwit-storage = { version = "0.2.0", path = "../quickwit-storage" } tokio = { version = "1", features = ["full"] } tokio-util = { version = "0.6", features = ["full"] } rand = "0.8" @@ -36,4 +36,4 @@ tempfile = '3' [dev-dependencies] mockall = "0.11" -quickwit-metastore = { version = "0.1.0", path = "../quickwit-metastore", features=["testsuite"]} +quickwit-metastore = { version = "0.2.0", path = "../quickwit-metastore", features=["testsuite"]} diff --git a/quickwit-directories/Cargo.toml b/quickwit-directories/Cargo.toml index 5dc46698ce9..5764b636ab8 100644 --- a/quickwit-directories/Cargo.toml +++ b/quickwit-directories/Cargo.toml @@ -1,6 +1,6 @@ [package] name = 'quickwit-directories' -version = '0.1.0' +version = "0.2.0" authors = ['Quickwit, Inc. '] edition = '2021' license = 'AGPL-3.0-or-later' # For a commercial, license, contact hello@quickwit.io @@ -17,7 +17,7 @@ serde = "1" serde_cbor = "0.11" serde_json = "1" tantivy = { git= "https://github.com/quickwit-inc/tantivy", rev="48c47f0d3", default-features=false, features = ["mmap", "lz4-compression"] } -quickwit-storage = { version = "0.1.0", path = "../quickwit-storage" } +quickwit-storage = { version = "0.2.0", path = "../quickwit-storage" } uuid = "0.8" once_cell = "1" tokio = { version = "1", features = ["sync"] } diff --git a/quickwit-doc-mapper/Cargo.toml b/quickwit-doc-mapper/Cargo.toml index 13a928994e6..fd95e620bed 100644 --- a/quickwit-doc-mapper/Cargo.toml +++ b/quickwit-doc-mapper/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "quickwit-doc-mapper" -version = "0.1.0" +version = "0.2.0" authors = ["Quickwit, Inc. "] edition = "2021" license = "AGPL-3.0-or-later" # For a commercial, license, contact hello@quickwit.io diff --git a/quickwit-indexing/Cargo.toml b/quickwit-indexing/Cargo.toml index 2cf2c660506..8c8c41d0695 100644 --- a/quickwit-indexing/Cargo.toml +++ b/quickwit-indexing/Cargo.toml @@ -1,6 +1,6 @@ [package] name = 'quickwit-indexing' -version = '0.1.0' +version = "0.2.0" authors = ['Quickwit, Inc. '] edition = '2021' license = 'AGPL-3.0-or-later' # For a commercial, license, contact hello@quickwit.io @@ -25,7 +25,7 @@ quickwit-config = {path = "../quickwit-config" } quickwit-directories = {path = "../quickwit-directories"} quickwit-doc-mapper = {path = "../quickwit-doc-mapper", features=["testsuite"]} quickwit-metastore = {path = "../quickwit-metastore" } -quickwit-storage = { version = "0.1.0", path = "../quickwit-storage" } +quickwit-storage = { version = "0.2.0", path = "../quickwit-storage" } rdkafka = { version = "0.28", default-features = false, features = ["tokio", "libz", "ssl", "cmake-build"], optional = true } openssl = { version = "0.10.36", default-features = false, optional = true} libz-sys = {version = "1.1.3", optional = true} @@ -54,7 +54,7 @@ kinesis-external-service = [] bytes = "1" mockall = "0.11" proptest = "1" -quickwit-common = {path="../quickwit-common", version="0.1"} +quickwit-common = {path="../quickwit-common", version="0.2"} quickwit-metastore = {path = "../quickwit-metastore", features=["testsuite"]} quickwit-storage = {path = "../quickwit-storage", features=["testsuite"]} rand = '0.8' diff --git a/quickwit-metastore/Cargo.toml b/quickwit-metastore/Cargo.toml index 9a5721922d0..40ecef405cd 100644 --- a/quickwit-metastore/Cargo.toml +++ b/quickwit-metastore/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "quickwit-metastore" -version = "0.1.0" +version = "0.2.0" authors = ['Quickwit, Inc. '] edition = "2021" license = "AGPL-3.0-or-later" # For a commercial, license, contact hello@quickwit.io @@ -28,10 +28,10 @@ thiserror = "1.0" tokio = { version = "1.6", features = ["full"]} tracing = "0.1.29" -quickwit-common = { version = "0.1.0", path = "../quickwit-common" } -quickwit-config = { version = "0.1.0", path = "../quickwit-config" } -quickwit-doc-mapper = { version = "0.1.0", path = "../quickwit-doc-mapper" } -quickwit-storage = { version = "0.1.0", path = "../quickwit-storage" } +quickwit-common = { version = "0.2.0", path = "../quickwit-common" } +quickwit-config = { version = "0.2.0", path = "../quickwit-config" } +quickwit-doc-mapper = { version = "0.2.0", path = "../quickwit-doc-mapper" } +quickwit-storage = { version = "0.2.0", path = "../quickwit-storage" } [dependencies.mockall] version = "0.11" @@ -44,8 +44,8 @@ optional = true [dev-dependencies] dotenv = "0.15" mockall = "0.11" -quickwit-storage = { version = "0.1.0", path = "../quickwit-storage", features=["testsuite"]} -quickwit-doc-mapper = { version = "0.1.0", path = "../quickwit-doc-mapper", features=["testsuite"] } +quickwit-storage = { version = "0.2.0", path = "../quickwit-storage", features=["testsuite"]} +quickwit-doc-mapper = { version = "0.2.0", path = "../quickwit-doc-mapper", features=["testsuite"] } tempfile = '3' futures = '0.3' rand = "0.8" diff --git a/quickwit-proto/Cargo.toml b/quickwit-proto/Cargo.toml index c8d0cdd5ae9..e6422740a19 100644 --- a/quickwit-proto/Cargo.toml +++ b/quickwit-proto/Cargo.toml @@ -1,6 +1,6 @@ [package] name = 'quickwit-proto' -version = '0.1.0' +version = "0.2.0" authors = ['Quickwit, inc '] edition = '2021' license = 'AGPL-3.0-or-later' # For a commercial, license, contact hello@quickwit.io diff --git a/quickwit-search/Cargo.toml b/quickwit-search/Cargo.toml index e06a3551000..aa1082acc38 100644 --- a/quickwit-search/Cargo.toml +++ b/quickwit-search/Cargo.toml @@ -1,6 +1,6 @@ [package] name = 'quickwit-search' -version = '0.1.0' +version = "0.2.0" authors = ['Quickwit, inc '] edition = '2021' license = "AGPL-3.0-or-later" # For a commercial, license, contact hello@quickwit.io @@ -63,8 +63,8 @@ path = '../quickwit-metastore' path = '../quickwit-storage' [dev-dependencies] -quickwit-proto = { version = "0.1", path = "../quickwit-proto" } -quickwit-indexing = { version = "0.1.0", path = "../quickwit-indexing" } +quickwit-proto = { version = "0.2", path = "../quickwit-proto" } +quickwit-indexing = { version = "0.2.0", path = "../quickwit-indexing" } quickwit-metastore = {path = "../quickwit-metastore", features=["testsuite"]} serde_json = "1" assert-json-diff = "2" diff --git a/quickwit-serve/Cargo.toml b/quickwit-serve/Cargo.toml index 8445629667b..37edbdc850f 100644 --- a/quickwit-serve/Cargo.toml +++ b/quickwit-serve/Cargo.toml @@ -1,6 +1,6 @@ [package] name = 'quickwit-serve' -version = '0.1.0' +version = "0.2.0" authors = ['Quickwit '] edition = '2021' license = "AGPL-3.0-or-later" # For a commercial, license, contact hello@quickwit.io @@ -41,7 +41,7 @@ once_cell = '1' mockall = "0.11" assert-json-diff = "2.0.1" tokio = { version = "1", features = ["full"] } -quickwit-storage = { version = "0.1.0", path = "../quickwit-storage", features=["testsuite"]} +quickwit-storage = { version = "0.2.0", path = "../quickwit-storage", features=["testsuite"]} quickwit-core = {path="../quickwit-core"} quickwit-indexing= {path="../quickwit-indexing"} quickwit-doc-mapper = {path="../quickwit-doc-mapper"} diff --git a/quickwit-storage/Cargo.toml b/quickwit-storage/Cargo.toml index 6bacf434d99..165c95a077a 100644 --- a/quickwit-storage/Cargo.toml +++ b/quickwit-storage/Cargo.toml @@ -1,6 +1,6 @@ [package] name = 'quickwit-storage' -version = '0.1.0' +version = "0.2.0" authors = ['Quickwit, Inc. '] edition = '2021' license = "AGPL-3.0-or-later" # For a commercial, license, contact hello@quickwit.io @@ -10,8 +10,8 @@ homepage = "https://quickwit.io/" documentation = "https://quickwit.io/docs/" [dependencies] -quickwit-common = { version = "0.1.0", path = "../quickwit-common" } -quickwit-config = { version = "0.1.0", path = "../quickwit-config" } +quickwit-common = { version = "0.2.0", path = "../quickwit-common" } +quickwit-config = { version = "0.2.0", path = "../quickwit-config" } async-trait = '0.1' md5 = '0.7' anyhow = '1' diff --git a/quickwit-swim/Cargo.toml b/quickwit-swim/Cargo.toml index 0068ff82413..683371af652 100644 --- a/quickwit-swim/Cargo.toml +++ b/quickwit-swim/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "quickwit-swim" -version = "0.1.2" +version = "0.2.0" authors = ['Quickwit, Inc. '] edition = '2021' description = "Fork of artillery-core SWIM implementation" diff --git a/quickwit-telemetry/Cargo.toml b/quickwit-telemetry/Cargo.toml index fe17e097cb0..49e016066fc 100644 --- a/quickwit-telemetry/Cargo.toml +++ b/quickwit-telemetry/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "quickwit-telemetry" -version = "0.1.0" +version = "0.2.0" authors = ["Quickwit "] edition = "2021" license = "AGPL-3.0-or-later" # For a commercial, license, contact hello@quickwit.io