Skip to content

Commit

Permalink
update third_party_dep (infinyon#2496)
Browse files Browse the repository at this point in the history
Update third-party dependencies to the latest versions.
Update WASMTIME to 0.39.
Update DEVELOPER.md to match latest build and run command
  • Loading branch information
sehz committed Jul 21, 2022
1 parent abcddf4 commit 0bc833d
Show file tree
Hide file tree
Showing 9 changed files with 454 additions and 370 deletions.
426 changes: 220 additions & 206 deletions Cargo.lock

Large diffs are not rendered by default.

372 changes: 221 additions & 151 deletions DEVELOPER.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion crates/fluvio-cluster/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ futures-util = "0.3"
futures-channel = { version = "0.3", features = ["sink"] }
tokio = { version = "1.3.0", features = ["macros"] }
once_cell = "1.5"
derive_builder = "0.10.2"
derive_builder = "0.11.0"
which = "4.1.0"
directories = "4.0.0"
tempfile = "3.2"
Expand Down
4 changes: 2 additions & 2 deletions crates/fluvio-dataplane-protocol/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fluvio-dataplane-protocol"
version = "0.11.4"
version = "0.11.5"
edition = "2021"
authors = ["Fluvio Contributors <team@fluvio.io>"]
description = "data plane protocol"
Expand All @@ -23,7 +23,7 @@ content_inspector = "0.2.4"
crc32c = { version = "0.6" }
semver = "1.0.0"
once_cell = "1.5.2"
derive_builder = { version = "0.10.0", optional = true }
derive_builder = { version = "0.11.0", optional = true }
eyre = { version = "0.6", default-features = false }
thiserror = "1"

Expand Down
2 changes: 1 addition & 1 deletion crates/fluvio-sc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ clap = { version = "3.1.8", features = ["std", "derive", "env"], default-feature
semver = "1.0.0"
once_cell = "1.5"
cfg-if = { version = "1.0.0" }
sysinfo = "0.23.0"
sysinfo = "0.24.0"
serde_yaml = "0.8"

# Fluvio dependencies
Expand Down
8 changes: 4 additions & 4 deletions crates/fluvio-smartengine/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fluvio-smartengine"
version = "0.3.0"
version = "0.3.1"
edition = "2021"
license = "Apache-2.0"
authors = ["Fluvio Contributors <team@fluvio.io>"]
Expand All @@ -16,8 +16,8 @@ smartmodule = ["fluvio-controlplane-metadata", "flate2"]
wasi = ["wasmtime-wasi"]

[dependencies]
wasmtime = "0.38.1"
wasmtime-wasi = {version="0.38.1", optional = true}
wasmtime = "0.39.0"
wasmtime-wasi = {version="0.39.0", optional = true}
nix = "0.24"
tracing = "0.1.27"
anyhow = "1.0.38"
Expand All @@ -38,5 +38,5 @@ thiserror = "1.0.31"

[dev-dependencies]
fluvio-types = { path = "../fluvio-types" }
cargo = "0.62"
cargo = "0.63"
cfg-if = "1.0.0"
4 changes: 2 additions & 2 deletions crates/fluvio-spu/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ async-io = "1.3.1"
adaptive_backoff = "0.2.1"
thiserror = "1"
once_cell = "1.5"
sysinfo = "0.23.0"
sysinfo = "0.24.0"

# Fluvio dependencies
fluvio = { path = "../fluvio" }
Expand Down Expand Up @@ -73,7 +73,7 @@ fluvio-smartengine = { path = "../fluvio-smartengine" }
once_cell = "1.5.2"
flv-util = { version = "0.5.2", features = ["fixture"] }
fluvio-future = { version = "0.4.0", features = ["fixture", "subscriber"] }
derive_builder = { version = "0.10.0" }
derive_builder = { version = "0.11.0" }
dataplane = { path = "../fluvio-dataplane-protocol", package = "fluvio-dataplane-protocol", features = [
"fixture",
] }
Expand Down
4 changes: 2 additions & 2 deletions crates/fluvio-storage/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ async-trait = "0.1.18"
clap = { version = "3.1.8", features = ["std", "derive"], default-features = false, optional = true }
serde = { version = "1.0.103", features = ['derive'] }
async-lock = "2.4.0"
derive_builder = "0.10.2"
derive_builder = "0.11.0"
thiserror = "1"
memmap = { version = "0.7.0" }
tokio = { version = "1.3.0", features = ["macros"] }
Expand All @@ -55,4 +55,4 @@ fluvio-storage = { path = ".", features = ["fixture"] }
dataplane = { path = "../fluvio-dataplane-protocol", package = "fluvio-dataplane-protocol", features = [
"fixture",
] }
derive_builder = { version = "0.10.0" }
derive_builder = { version = "0.11.0" }
2 changes: 1 addition & 1 deletion crates/fluvio/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ semver = "1.0.0"
pin-project-lite = "0.2"
siphasher = "0.3.5"
cfg-if = "1.0.0"
derive_builder = "0.10"
derive_builder = "0.11.0"
async-trait = "0.1.51"
sysinfo = { version = "0.24", optional = true }
quantities = { version = "0.9.0", features = ["datavolume", "datathroughput", "duration"], optional = true }
Expand Down

0 comments on commit 0bc833d

Please sign in to comment.