diff --git a/Cargo.lock b/Cargo.lock index 5daf13f8fc..5182cebb21 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7036,7 +7036,7 @@ dependencies = [ [[package]] name = "tremor-api" -version = "0.13.0-rc.30" +version = "0.13.0-rc.31" dependencies = [ "env_logger", "halfbrown", @@ -7058,7 +7058,7 @@ dependencies = [ [[package]] name = "tremor-archive" -version = "0.13.0-rc.30" +version = "0.13.0-rc.31" dependencies = [ "log", "serde", @@ -7075,7 +7075,7 @@ dependencies = [ [[package]] name = "tremor-cli" -version = "0.13.0-rc.30" +version = "0.13.0-rc.31" dependencies = [ "anyhow", "clap", @@ -7122,7 +7122,7 @@ dependencies = [ [[package]] name = "tremor-codec" -version = "0.13.0-rc.30" +version = "0.13.0-rc.31" dependencies = [ "apache-avro", "async-recursion", @@ -7158,7 +7158,7 @@ dependencies = [ [[package]] name = "tremor-common" -version = "0.13.0-rc.30" +version = "0.13.0-rc.31" dependencies = [ "base64 0.22.1", "beef", @@ -7177,7 +7177,7 @@ dependencies = [ [[package]] name = "tremor-config" -version = "0.13.0-rc.30" +version = "0.13.0-rc.31" dependencies = [ "serde", "tremor-value", @@ -7185,7 +7185,7 @@ dependencies = [ [[package]] name = "tremor-connectors" -version = "0.13.0-rc.30" +version = "0.13.0-rc.31" dependencies = [ "anyhow", "async-compression", @@ -7263,7 +7263,7 @@ dependencies = [ [[package]] name = "tremor-connectors-aws" -version = "0.13.0-rc.30" +version = "0.13.0-rc.31" dependencies = [ "anyhow", "async-channel 2.3.1", @@ -7294,7 +7294,7 @@ dependencies = [ [[package]] name = "tremor-connectors-azure" -version = "0.13.0-rc.30" +version = "0.13.0-rc.31" dependencies = [ "anyhow", "async-trait", @@ -7320,7 +7320,7 @@ dependencies = [ [[package]] name = "tremor-connectors-gcp" -version = "0.13.0-rc.30" +version = "0.13.0-rc.31" dependencies = [ "anyhow", "async-channel 1.9.0", @@ -7363,7 +7363,7 @@ dependencies = [ [[package]] name = "tremor-connectors-object-storage" -version = "0.13.0-rc.30" +version = "0.13.0-rc.31" dependencies = [ "anyhow", "async-trait", @@ -7377,7 +7377,7 @@ dependencies = [ [[package]] name = "tremor-connectors-otel" -version = "0.13.0-rc.30" +version = "0.13.0-rc.31" dependencies = [ "anyhow", "async-channel 1.9.0", @@ -7403,7 +7403,7 @@ dependencies = [ [[package]] name = "tremor-connectors-test-helpers" -version = "0.13.0-rc.30" +version = "0.13.0-rc.31" dependencies = [ "lazy_static", "log", @@ -7413,7 +7413,7 @@ dependencies = [ [[package]] name = "tremor-influx" -version = "0.13.0-rc.30" +version = "0.13.0-rc.31" dependencies = [ "criterion", "lexical", @@ -7425,7 +7425,7 @@ dependencies = [ [[package]] name = "tremor-interceptor" -version = "0.13.0-rc.30" +version = "0.13.0-rc.31" dependencies = [ "anyhow", "brotli", @@ -7474,7 +7474,7 @@ dependencies = [ [[package]] name = "tremor-pipeline" -version = "0.13.0-rc.30" +version = "0.13.0-rc.31" dependencies = [ "beef", "criterion", @@ -7508,7 +7508,7 @@ dependencies = [ [[package]] name = "tremor-runtime" -version = "0.13.0-rc.30" +version = "0.13.0-rc.31" dependencies = [ "anyhow", "async-trait", @@ -7552,7 +7552,7 @@ dependencies = [ [[package]] name = "tremor-script" -version = "0.13.0-rc.30" +version = "0.13.0-rc.31" dependencies = [ "atty", "beef", @@ -7603,7 +7603,7 @@ dependencies = [ [[package]] name = "tremor-system" -version = "0.13.0-rc.30" +version = "0.13.0-rc.31" dependencies = [ "anyhow", "either", @@ -7620,7 +7620,7 @@ dependencies = [ [[package]] name = "tremor-value" -version = "0.13.0-rc.30" +version = "0.13.0-rc.31" dependencies = [ "base64 0.22.1", "beef", diff --git a/Cargo.toml b/Cargo.toml index 9a543f5d5f..7d894ddc3e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ license = "Apache-2.0" name = "tremor-runtime" readme = "README.md" repository = "https://github.com/tremor-rs/tremor-runtime" -version = "0.13.0-rc.30" +version = "0.13.0-rc.31" rust-version = "1.76" [workspace] @@ -45,21 +45,21 @@ lto = "thin" opt-level = 3 [dependencies] -tremor-codec = { path = "tremor-codec", version = "0.13.0-rc.30" } -tremor-common = { path = "tremor-common", version = "0.13.0-rc.30" } -tremor-config = { path = "tremor-config", version = "0.13.0-rc.30" } -tremor-connectors = { path = "tremor-connectors", version = "0.13.0-rc.30", default-features = false } -tremor-connectors-aws = { path = "tremor-connectors-aws", version = "0.13.0-rc.30", optional = true } -tremor-connectors-azure = { path = "tremor-connectors-azure", version = "0.13.0-rc.30", optional = true } -tremor-connectors-gcp = { path = "tremor-connectors-gcp", version = "0.13.0-rc.30", optional = true } -tremor-connectors-otel = { path = "tremor-connectors-otel", version = "0.13.0-rc.30", optional = true } -tremor-influx = { path = "tremor-influx", version = "0.13.0-rc.30" } -tremor-interceptor = { path = "tremor-interceptor", version = "0.13.0-rc.30" } -tremor-pipeline = { path = "tremor-pipeline", version = "0.13.0-rc.30" } -tremor-script = { path = "tremor-script", version = "0.13.0-rc.30" } -tremor-system = { path = "tremor-system", version = "0.13.0-rc.30" } -tremor-value = { path = "tremor-value", version = "0.13.0-rc.30" } -tremor-archive = { path = "tremor-archive", version = "0.13.0-rc.30" } +tremor-codec = { path = "tremor-codec", version = "0.13.0-rc.31" } +tremor-common = { path = "tremor-common", version = "0.13.0-rc.31" } +tremor-config = { path = "tremor-config", version = "0.13.0-rc.31" } +tremor-connectors = { path = "tremor-connectors", version = "0.13.0-rc.31", default-features = false } +tremor-connectors-aws = { path = "tremor-connectors-aws", version = "0.13.0-rc.31", optional = true } +tremor-connectors-azure = { path = "tremor-connectors-azure", version = "0.13.0-rc.31", optional = true } +tremor-connectors-gcp = { path = "tremor-connectors-gcp", version = "0.13.0-rc.31", optional = true } +tremor-connectors-otel = { path = "tremor-connectors-otel", version = "0.13.0-rc.31", optional = true } +tremor-influx = { path = "tremor-influx", version = "0.13.0-rc.31" } +tremor-interceptor = { path = "tremor-interceptor", version = "0.13.0-rc.31" } +tremor-pipeline = { path = "tremor-pipeline", version = "0.13.0-rc.31" } +tremor-script = { path = "tremor-script", version = "0.13.0-rc.31" } +tremor-system = { path = "tremor-system", version = "0.13.0-rc.31" } +tremor-value = { path = "tremor-value", version = "0.13.0-rc.31" } +tremor-archive = { path = "tremor-archive", version = "0.13.0-rc.31" } tokio = { version = "1.39", features = ["full"] } tokio-stream = "0.1" diff --git a/Dockerfile.learn b/Dockerfile.learn index 1efe787e91..0ff1ec23c0 100644 --- a/Dockerfile.learn +++ b/Dockerfile.learn @@ -2,7 +2,7 @@ FROM rust:1.82-bullseye as builder RUN cargo install --features=ssl websocat -FROM tremorproject/tremor:0.13.0-rc.30 +FROM tremorproject/tremor:0.13.0-rc.31 COPY --from=builder /usr/local/cargo/bin/websocat /usr/local/bin/websocat diff --git a/tremor-api/Cargo.toml b/tremor-api/Cargo.toml index f703a2e538..af5b6c2be5 100644 --- a/tremor-api/Cargo.toml +++ b/tremor-api/Cargo.toml @@ -4,7 +4,7 @@ description = "Tremor Api Callbacks" edition = "2021" license = "Apache-2.0" name = "tremor-api" -version = "0.13.0-rc.30" +version = "0.13.0-rc.31" homepage = "https://www.tremor.rs" [dependencies] @@ -17,12 +17,12 @@ simd-json = "0.13" tokio = { version = "1.39", features = ["full"] } # we don't need sessions or cookies or shitty logging middleware tide = { version = "0.16", default-features = false, features = ["h1-server"] } -tremor-pipeline = { version = "0.13.0-rc.30", path = "../tremor-pipeline" } -tremor-runtime = { version = "0.13.0-rc.30", path = "../" } -tremor-script = { version = "0.13.0-rc.30", path = "../tremor-script" } -tremor-value = { version = "0.13.0-rc.30", path = "../tremor-value" } -tremor-common = { version = "0.13.0-rc.30", path = "../tremor-common" } -tremor-system = { version = "0.13.0-rc.30", path = "../tremor-system" } +tremor-pipeline = { version = "0.13.0-rc.31", path = "../tremor-pipeline" } +tremor-runtime = { version = "0.13.0-rc.31", path = "../" } +tremor-script = { version = "0.13.0-rc.31", path = "../tremor-script" } +tremor-value = { version = "0.13.0-rc.31", path = "../tremor-value" } +tremor-common = { version = "0.13.0-rc.31", path = "../tremor-common" } +tremor-system = { version = "0.13.0-rc.31", path = "../tremor-system" } [dev-dependencies] surf = { version = "2.3", default-features = false, features = [ diff --git a/tremor-archive/Cargo.toml b/tremor-archive/Cargo.toml index 8ce2d47cef..2482b455b0 100644 --- a/tremor-archive/Cargo.toml +++ b/tremor-archive/Cargo.toml @@ -8,11 +8,11 @@ homepage = "https://www.tremor.rs" license = "Apache-2.0" readme = "README.md" repository = "https://github.com/tremor-rs/tremor-runtime" -version = "0.13.0-rc.30" +version = "0.13.0-rc.31" [dependencies] -tremor-common = { path = "../tremor-common", version = "0.13.0-rc.30" } -tremor-script = { path = "../tremor-script", version = "0.13.0-rc.30" } +tremor-common = { path = "../tremor-common", version = "0.13.0-rc.31" } +tremor-script = { path = "../tremor-script", version = "0.13.0-rc.31" } tokio = { version = "1", default-features = false, features = [] } tokio-tar = "0.3" diff --git a/tremor-cli/Cargo.toml b/tremor-cli/Cargo.toml index 1c8bbf29c5..36db7dce1c 100644 --- a/tremor-cli/Cargo.toml +++ b/tremor-cli/Cargo.toml @@ -4,7 +4,7 @@ description = "Tremor CLI Tool" edition = "2021" license = "Apache-2.0" name = "tremor-cli" -version = "0.13.0-rc.30" +version = "0.13.0-rc.31" homepage = "https://www.tremor.rs" [package.metadata.docs.rs] @@ -46,16 +46,16 @@ surf = { version = "=2.3.2", default-features = false, features = [ "h1-client-rustls", "middleware-logger", ] } -tremor-api = { version = "0.13.0-rc.30", path = "../tremor-api" } -tremor-codec = { version = "0.13.0-rc.30", path = "../tremor-codec" } -tremor-interceptor = { version = "0.13.0-rc.30", path = "../tremor-interceptor" } -tremor-common = { version = "0.13.0-rc.30", path = "../tremor-common" } -tremor-pipeline = { version = "0.13.0-rc.30", path = "../tremor-pipeline" } -tremor-runtime = { version = "0.13.0-rc.30", path = "../" } -tremor-script = { version = "0.13.0-rc.30", path = "../tremor-script" } -tremor-value = { version = "0.13.0-rc.30", path = "../tremor-value" } -tremor-system = { version = "0.13.0-rc.30", path = "../tremor-system" } -tremor-archive = { version = "0.13.0-rc.30", path = "../tremor-archive" } +tremor-api = { version = "0.13.0-rc.31", path = "../tremor-api" } +tremor-codec = { version = "0.13.0-rc.31", path = "../tremor-codec" } +tremor-interceptor = { version = "0.13.0-rc.31", path = "../tremor-interceptor" } +tremor-common = { version = "0.13.0-rc.31", path = "../tremor-common" } +tremor-pipeline = { version = "0.13.0-rc.31", path = "../tremor-pipeline" } +tremor-runtime = { version = "0.13.0-rc.31", path = "../" } +tremor-script = { version = "0.13.0-rc.31", path = "../tremor-script" } +tremor-value = { version = "0.13.0-rc.31", path = "../tremor-value" } +tremor-system = { version = "0.13.0-rc.31", path = "../tremor-system" } +tremor-archive = { version = "0.13.0-rc.31", path = "../tremor-archive" } url = "2" error-chain = "0.12" globwalk = "0.9" diff --git a/tremor-codec/Cargo.toml b/tremor-codec/Cargo.toml index 6ac16fca88..20ab54c3a4 100644 --- a/tremor-codec/Cargo.toml +++ b/tremor-codec/Cargo.toml @@ -7,13 +7,13 @@ documentation = "https://docs.rs/tremor-script" license = "Apache-2.0" readme = "README.md" repository = "https://github.com/tremor-rs/tremor-runtime" -version = "0.13.0-rc.30" +version = "0.13.0-rc.31" [dependencies] -tremor-value = { version = "0.13.0-rc.30", path = "../tremor-value" } -tremor-common = { version = "0.13.0-rc.30", path = "../tremor-common" } -tremor-config = { version = "0.13.0-rc.30", path = "../tremor-config" } +tremor-value = { version = "0.13.0-rc.31", path = "../tremor-value" } +tremor-common = { version = "0.13.0-rc.31", path = "../tremor-common" } +tremor-config = { version = "0.13.0-rc.31", path = "../tremor-config" } tokio = { version = "1.39", features = ["full"] } async-trait = "0.1" error-chain = "0.12" @@ -43,7 +43,7 @@ reqwest = { version = "0.12", default-features = false, features = [ "rustls-tls-native-roots", ] } csv = "1.2" -tremor-influx = { version = "0.13.0-rc.30", path = "../tremor-influx" } +tremor-influx = { version = "0.13.0-rc.31", path = "../tremor-influx" } simd-json = "0.13" apache-avro = { version = "0.17", features = [ "snappy", diff --git a/tremor-common/Cargo.toml b/tremor-common/Cargo.toml index 97098e1b22..f8327723a0 100644 --- a/tremor-common/Cargo.toml +++ b/tremor-common/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "tremor-common" readme = "README.md" -version = "0.13.0-rc.30" +version = "0.13.0-rc.31" [dependencies] tokio = { version = "1", default-features = false, features = ["fs"] } diff --git a/tremor-config/Cargo.toml b/tremor-config/Cargo.toml index a9f9b83592..39e0152d49 100644 --- a/tremor-config/Cargo.toml +++ b/tremor-config/Cargo.toml @@ -7,10 +7,10 @@ documentation = "https://docs.rs/tremor-script" license = "Apache-2.0" readme = "README.md" repository = "https://github.com/tremor-rs/tremor-runtime" -version = "0.13.0-rc.30" +version = "0.13.0-rc.31" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -tremor-value = { path = "../tremor-value", version = "0.13.0-rc.30" } +tremor-value = { path = "../tremor-value", version = "0.13.0-rc.31" } serde = "1" diff --git a/tremor-connectors-aws/Cargo.toml b/tremor-connectors-aws/Cargo.toml index 8d413937c8..b3d08d7b19 100644 --- a/tremor-connectors-aws/Cargo.toml +++ b/tremor-connectors-aws/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tremor-connectors-aws" -version = "0.13.0-rc.30" +version = "0.13.0-rc.31" edition = "2021" license = "Apache-2.0" homepage = "https://www.tremor.rs" @@ -9,12 +9,12 @@ authors = ["The Tremor Team"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -tremor-connectors = { path = "../tremor-connectors", version = "0.13.0-rc.30", default-features = false } -tremor-connectors-object-storage = { path = "../tremor-connectors-object-storage", version = "0.13.0-rc.30" } -tremor-common = { path = "../tremor-common", version = "0.13.0-rc.30" } -tremor-system = { path = "../tremor-system", version = "0.13.0-rc.30" } -tremor-value = { path = "../tremor-value", version = "0.13.0-rc.30" } -tremor-config = { path = "../tremor-config", version = "0.13.0-rc.30" } +tremor-connectors = { path = "../tremor-connectors", version = "0.13.0-rc.31", default-features = false } +tremor-connectors-object-storage = { path = "../tremor-connectors-object-storage", version = "0.13.0-rc.31" } +tremor-common = { path = "../tremor-common", version = "0.13.0-rc.31" } +tremor-system = { path = "../tremor-system", version = "0.13.0-rc.31" } +tremor-value = { path = "../tremor-value", version = "0.13.0-rc.31" } +tremor-config = { path = "../tremor-config", version = "0.13.0-rc.31" } async-trait = { version = "0.1", default-features = false } serde = { version = "1.0", default-features = false, features = ["derive"] } @@ -41,7 +41,7 @@ rand = { version = "0.8", default-features = false } testcontainers = { version = "0.23", default-features = false } serial_test = { version = "3.0", default-features = false } bytes = { version = "1.6", default-features = true } -tremor-connectors-test-helpers = { path = "../tremor-connectors-test-helpers", version = "0.13.0-rc.30" } +tremor-connectors-test-helpers = { path = "../tremor-connectors-test-helpers", version = "0.13.0-rc.31" } testcontainers-modules = { version = "0.11.1", features = ["localstack"] } [features] diff --git a/tremor-connectors-azure/Cargo.toml b/tremor-connectors-azure/Cargo.toml index be080bc763..3ce7debb9a 100644 --- a/tremor-connectors-azure/Cargo.toml +++ b/tremor-connectors-azure/Cargo.toml @@ -1,17 +1,17 @@ [package] name = "tremor-connectors-azure" edition = "2021" -version = "0.13.0-rc.30" +version = "0.13.0-rc.31" authors = ["The Tremor Team"] homepage = "https://www.tremor.rs" license = "Apache-2.0" [dependencies] -tremor-connectors = { path = "../tremor-connectors", version = "0.13.0-rc.30", default-features = false } -tremor-common = { path = "../tremor-common", version = "0.13.0-rc.30" } -tremor-system = { path = "../tremor-system", version = "0.13.0-rc.30" } -tremor-value = { path = "../tremor-value", version = "0.13.0-rc.30" } -tremor-config = { path = "../tremor-config", version = "0.13.0-rc.30" } +tremor-connectors = { path = "../tremor-connectors", version = "0.13.0-rc.31", default-features = false } +tremor-common = { path = "../tremor-common", version = "0.13.0-rc.31" } +tremor-system = { path = "../tremor-system", version = "0.13.0-rc.31" } +tremor-value = { path = "../tremor-value", version = "0.13.0-rc.31" } +tremor-config = { path = "../tremor-config", version = "0.13.0-rc.31" } azure_core = { version = "0.20.0", default-features = false, features = [ "enable_reqwest", @@ -25,7 +25,7 @@ url = "2.5.2" reqwest = { version = "0.12.4", default-features = false, features = ["json"] } tokio = "1.39.2" log = "0.4.21" -tremor-script = { version = "0.13.0-rc.30", path = "../tremor-script" } +tremor-script = { version = "0.13.0-rc.31", path = "../tremor-script" } bytes = "1.6.1" futures = { version = "0.3.30", default-features = false, features = [ "alloc", diff --git a/tremor-connectors-gcp/Cargo.toml b/tremor-connectors-gcp/Cargo.toml index f856f6a83d..e0275faf2f 100644 --- a/tremor-connectors-gcp/Cargo.toml +++ b/tremor-connectors-gcp/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tremor-connectors-gcp" -version = "0.13.0-rc.30" +version = "0.13.0-rc.31" edition = "2021" license = "Apache-2.0" homepage = "https://www.tremor.rs" @@ -9,13 +9,13 @@ authors = ["The Tremor Team"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -tremor-connectors = { path = "../tremor-connectors", version = "0.13.0-rc.30", default-features = false } -tremor-connectors-object-storage = { path = "../tremor-connectors-object-storage", version = "0.13.0-rc.30" } -tremor-common = { path = "../tremor-common", version = "0.13.0-rc.30" } -tremor-system = { path = "../tremor-system", version = "0.13.0-rc.30" } -tremor-value = { path = "../tremor-value", version = "0.13.0-rc.30" } -tremor-config = { path = "../tremor-config", version = "0.13.0-rc.30" } -tremor-script = { path = "../tremor-script", version = "0.13.0-rc.30" } +tremor-connectors = { path = "../tremor-connectors", version = "0.13.0-rc.31", default-features = false } +tremor-connectors-object-storage = { path = "../tremor-connectors-object-storage", version = "0.13.0-rc.31" } +tremor-common = { path = "../tremor-common", version = "0.13.0-rc.31" } +tremor-system = { path = "../tremor-system", version = "0.13.0-rc.31" } +tremor-value = { path = "../tremor-value", version = "0.13.0-rc.31" } +tremor-config = { path = "../tremor-config", version = "0.13.0-rc.31" } +tremor-script = { path = "../tremor-script", version = "0.13.0-rc.31" } anyhow = { version = "1", default-features = true } async-trait = { version = "0.1", default-features = true } @@ -70,10 +70,10 @@ tokio = { version = "1.39", default-features = true } value-trait = { version = "0.8" } test-case = { version = "3", default-features = true } anyhow = { version = "1" } -tremor-codec = { path = "../tremor-codec", version = "0.13.0-rc.30" } +tremor-codec = { path = "../tremor-codec", version = "0.13.0-rc.31" } tempfile = { version = "3", default-features = true } env_logger = { version = "0.11", default-features = true } -tremor-connectors-test-helpers = { path = "../tremor-connectors-test-helpers", version = "0.13.0-rc.30" } +tremor-connectors-test-helpers = { path = "../tremor-connectors-test-helpers", version = "0.13.0-rc.31" } serial_test = "3.1.1" testcontainers-modules = { version = "0.11.1", features = [ "google_cloud_sdk_emulators", diff --git a/tremor-connectors-object-storage/Cargo.toml b/tremor-connectors-object-storage/Cargo.toml index cdedcf7fd9..4ca94fc12e 100644 --- a/tremor-connectors-object-storage/Cargo.toml +++ b/tremor-connectors-object-storage/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tremor-connectors-object-storage" -version = "0.13.0-rc.30" +version = "0.13.0-rc.31" edition = "2021" license = "Apache-2.0" homepage = "https://www.tremor.rs" @@ -9,9 +9,9 @@ authors = ["The Tremor Team"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -tremor-connectors = { path = "../tremor-connectors", version = "0.13.0-rc.30", default-features = false } -tremor-value = { path = "../tremor-value", version = "0.13.0-rc.30" } -tremor-system = { path = "../tremor-system", version = "0.13.0-rc.30" } +tremor-connectors = { path = "../tremor-connectors", version = "0.13.0-rc.31", default-features = false } +tremor-value = { path = "../tremor-value", version = "0.13.0-rc.31" } +tremor-system = { path = "../tremor-system", version = "0.13.0-rc.31" } serde = { version = "1.0", features = ["derive"] } thiserror = { version = "1", default-features = true } anyhow = { version = "1", default-features = true } diff --git a/tremor-connectors-otel/Cargo.toml b/tremor-connectors-otel/Cargo.toml index 9d3a15bdbd..1053597966 100644 --- a/tremor-connectors-otel/Cargo.toml +++ b/tremor-connectors-otel/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tremor-connectors-otel" -version = "0.13.0-rc.30" +version = "0.13.0-rc.31" edition = "2021" license = "Apache-2.0" homepage = "https://www.tremor.rs" @@ -9,12 +9,12 @@ authors = ["The Tremor Team"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -tremor-connectors = { path = "../tremor-connectors", version = "0.13.0-rc.30", default-features = false } -tremor-common = { path = "../tremor-common", version = "0.13.0-rc.30" } -tremor-system = { path = "../tremor-system", version = "0.13.0-rc.30" } -tremor-value = { path = "../tremor-value", version = "0.13.0-rc.30" } -tremor-config = { path = "../tremor-config", version = "0.13.0-rc.30" } -tremor-script = { path = "../tremor-script", version = "0.13.0-rc.30" } +tremor-connectors = { path = "../tremor-connectors", version = "0.13.0-rc.31", default-features = false } +tremor-common = { path = "../tremor-common", version = "0.13.0-rc.31" } +tremor-system = { path = "../tremor-system", version = "0.13.0-rc.31" } +tremor-value = { path = "../tremor-value", version = "0.13.0-rc.31" } +tremor-config = { path = "../tremor-config", version = "0.13.0-rc.31" } +tremor-script = { path = "../tremor-script", version = "0.13.0-rc.31" } anyhow = { version = "1", default-features = true } async-trait = { version = "0.1", default-features = true } diff --git a/tremor-connectors-test-helpers/Cargo.toml b/tremor-connectors-test-helpers/Cargo.toml index 6db4b9454a..4226b86d81 100644 --- a/tremor-connectors-test-helpers/Cargo.toml +++ b/tremor-connectors-test-helpers/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tremor-connectors-test-helpers" -version = "0.13.0-rc.30" +version = "0.13.0-rc.31" edition = "2021" license = "Apache-2.0" homepage = "https://www.tremor.rs" diff --git a/tremor-connectors/Cargo.toml b/tremor-connectors/Cargo.toml index c3de6938cc..09fcf6f7a3 100644 --- a/tremor-connectors/Cargo.toml +++ b/tremor-connectors/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tremor-connectors" -version = "0.13.0-rc.30" +version = "0.13.0-rc.31" edition = "2021" license = "Apache-2.0" homepage = "https://www.tremor.rs" @@ -9,14 +9,14 @@ authors = ["The Tremor Team"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -tremor-common = { path = "../tremor-common", version = "0.13.0-rc.30" } -tremor-config = { path = "../tremor-config", version = "0.13.0-rc.30" } -tremor-codec = { path = "../tremor-codec", version = "0.13.0-rc.30" } -tremor-pipeline = { path = "../tremor-pipeline", version = "0.13.0-rc.30" } -tremor-script = { path = "../tremor-script", version = "0.13.0-rc.30" } -tremor-value = { path = "../tremor-value", version = "0.13.0-rc.30" } -tremor-interceptor = { path = "../tremor-interceptor", version = "0.13.0-rc.30" } -tremor-system = { path = "../tremor-system", version = "0.13.0-rc.30" } +tremor-common = { path = "../tremor-common", version = "0.13.0-rc.31" } +tremor-config = { path = "../tremor-config", version = "0.13.0-rc.31" } +tremor-codec = { path = "../tremor-codec", version = "0.13.0-rc.31" } +tremor-pipeline = { path = "../tremor-pipeline", version = "0.13.0-rc.31" } +tremor-script = { path = "../tremor-script", version = "0.13.0-rc.31" } +tremor-value = { path = "../tremor-value", version = "0.13.0-rc.31" } +tremor-interceptor = { path = "../tremor-interceptor", version = "0.13.0-rc.31" } +tremor-system = { path = "../tremor-system", version = "0.13.0-rc.31" } tokio = { version = "1.39", default-features = false } beef = { version = "0.5", default-features = false } value-trait = { version = "0.8", default-features = false } @@ -163,7 +163,7 @@ http-types = "2.0" bytes = "1.6" tempfile = { version = "3.8", default-features = false } env_logger = "0.11" -tremor-connectors-test-helpers = { path = "../tremor-connectors-test-helpers", version = "0.13.0-rc.30" } +tremor-connectors-test-helpers = { path = "../tremor-connectors-test-helpers", version = "0.13.0-rc.31" } tide = { version = "0.16", default-features = false } # TODO remove tide from TestHttpServer tokio = { version = "1.39", default-features = false, features = [ "full", diff --git a/tremor-influx/Cargo.toml b/tremor-influx/Cargo.toml index 29495fc3f9..6388600506 100644 --- a/tremor-influx/Cargo.toml +++ b/tremor-influx/Cargo.toml @@ -6,7 +6,7 @@ license = "Apache-2.0" name = "tremor-influx" readme = "README.md" repository = "https://github.com/tremor-rs/tremor-runtime" -version = "0.13.0-rc.30" +version = "0.13.0-rc.31" [package.metadata.docs.rs] default-target = "x86_64-unknown-linux-gnu" diff --git a/tremor-interceptor/Cargo.toml b/tremor-interceptor/Cargo.toml index c4214f7575..c99ea77091 100644 --- a/tremor-interceptor/Cargo.toml +++ b/tremor-interceptor/Cargo.toml @@ -7,15 +7,15 @@ documentation = "https://docs.tremor.rs" homepage = "https://www.tremor.rs" license = "Apache-2.0" repository = "https://github.com/tremor-rs/tremor-runtime" -version = "0.13.0-rc.30" +version = "0.13.0-rc.31" rust-version = "1.76" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -tremor-value = { path = "../tremor-value", version = "0.13.0-rc.30" } -tremor-config = { path = "../tremor-config", version = "0.13.0-rc.30" } -tremor-common = { path = "../tremor-common", version = "0.13.0-rc.30" } +tremor-value = { path = "../tremor-value", version = "0.13.0-rc.31" } +tremor-config = { path = "../tremor-config", version = "0.13.0-rc.31" } +tremor-common = { path = "../tremor-common", version = "0.13.0-rc.31" } log = "0.4" serde = { version = "1", features = ["derive"] } byteorder = "1" diff --git a/tremor-pipeline/Cargo.toml b/tremor-pipeline/Cargo.toml index abbcc516b0..2d2cb5f396 100644 --- a/tremor-pipeline/Cargo.toml +++ b/tremor-pipeline/Cargo.toml @@ -4,7 +4,7 @@ description = "Tremor Pipeline DAG Runtime" edition = "2021" license = "Apache-2.0" name = "tremor-pipeline" -version = "0.13.0-rc.30" +version = "0.13.0-rc.31" [dependencies] tokio = "1" @@ -25,11 +25,11 @@ simd-json = { version = "0.13", features = ["known-key"] } simd-json-derive = "0.13" value-trait = "0.8" sled = "0.34" -tremor-common = { version = "0.13.0-rc.30", path = "../tremor-common" } -tremor-config = { version = "0.13.0-rc.30", path = "../tremor-config" } -tremor-script = { version = "0.13.0-rc.30", path = "../tremor-script" } -tremor-value = { version = "0.13.0-rc.30", path = "../tremor-value" } -tremor-system = { version = "0.13.0-rc.30", path = "../tremor-system" } +tremor-common = { version = "0.13.0-rc.31", path = "../tremor-common" } +tremor-config = { version = "0.13.0-rc.31", path = "../tremor-config" } +tremor-script = { version = "0.13.0-rc.31", path = "../tremor-script" } +tremor-value = { version = "0.13.0-rc.31", path = "../tremor-value" } +tremor-system = { version = "0.13.0-rc.31", path = "../tremor-system" } url = "2" fenster = { version = "0.1.1" } diff --git a/tremor-script/Cargo.toml b/tremor-script/Cargo.toml index 0886344f51..e0e6e1223a 100644 --- a/tremor-script/Cargo.toml +++ b/tremor-script/Cargo.toml @@ -8,7 +8,7 @@ license = "Apache-2.0" name = "tremor-script" readme = "README.md" repository = "https://github.com/tremor-rs/tremor-runtime" -version = "0.13.0-rc.30" +version = "0.13.0-rc.31" [package.metadata.docs.rs] default-target = "x86_64-unknown-linux-gnu" @@ -51,10 +51,10 @@ value-trait = "0.8" sketches-ddsketch = "0.3" strip-ansi-escapes = "0.2" termcolor = "1.4" -tremor-common = { version = "0.13.0-rc.30", path = "../tremor-common" } -tremor-influx = { version = "0.13.0-rc.30", path = "../tremor-influx" } -tremor-value = { version = "0.13.0-rc.30", path = "../tremor-value" } -tremor-codec = { version = "0.13.0-rc.30", path = "../tremor-codec" } +tremor-common = { version = "0.13.0-rc.31", path = "../tremor-common" } +tremor-influx = { version = "0.13.0-rc.31", path = "../tremor-influx" } +tremor-value = { version = "0.13.0-rc.31", path = "../tremor-value" } +tremor-codec = { version = "0.13.0-rc.31", path = "../tremor-codec" } tremor-kv = "0.6" unicode-xid = "0.2" url = "2" diff --git a/tremor-system/Cargo.toml b/tremor-system/Cargo.toml index e507fd2280..0f0880245b 100644 --- a/tremor-system/Cargo.toml +++ b/tremor-system/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tremor-system" -version = "0.13.0-rc.30" +version = "0.13.0-rc.31" edition = "2021" license = "Apache-2.0" homepage = "https://www.tremor.rs" @@ -9,8 +9,8 @@ authors = ["The Tremor Team"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -tremor-common = { path = "../tremor-common", version = "0.13.0-rc.30" } -tremor-script = { path = "../tremor-script", version = "0.13.0-rc.30" } +tremor-common = { path = "../tremor-common", version = "0.13.0-rc.31" } +tremor-script = { path = "../tremor-script", version = "0.13.0-rc.31" } tokio = { version = "1.39", default-features = false } anyhow = { version = "1.0", default-features = true } @@ -22,4 +22,4 @@ simd-json = { version = "0.13", default-features = false } either = { version = "1.13", default-features = false } [dev-dependencies] -tremor-value = { path = "../tremor-value", version = "0.13.0-rc.30" } +tremor-value = { path = "../tremor-value", version = "0.13.0-rc.31" } diff --git a/tremor-value/Cargo.toml b/tremor-value/Cargo.toml index c137af400a..9ea63fe67b 100644 --- a/tremor-value/Cargo.toml +++ b/tremor-value/Cargo.toml @@ -7,7 +7,7 @@ license = "Apache-2.0" name = "tremor-value" readme = "README.md" repository = "https://github.com/tremor-rs/tremor-runtime" -version = "0.13.0-rc.30" +version = "0.13.0-rc.31" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -19,7 +19,7 @@ serde = "1.0" simd-json = "0.13" simd-json-derive = "0.13" value-trait = { version = "0.8", features = ["custom-types"] } -tremor-common = { version = "0.13.0-rc.30", path = "../tremor-common" } +tremor-common = { version = "0.13.0-rc.31", path = "../tremor-common" } [dev-dependencies] float-cmp = "0.9"