Skip to content

Commit

Permalink
Merge pull request kata-containers#10775 from fidencio/topic/update-t…
Browse files Browse the repository at this point in the history
…trpc-crate

agent: Update ttrpc to include the fix for connectivity issues
  • Loading branch information
fidencio authored Jan 22, 2025
2 parents 90b6d57 + a8678a7 commit 6baa60d
Show file tree
Hide file tree
Showing 14 changed files with 55 additions and 69 deletions.
5 changes: 3 additions & 2 deletions src/agent/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 src/agent/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ oci-spec = { version = "0.6.8", features = ["runtime"] }
rustjail = { path = "rustjail" }
protocols = { path = "../libs/protocols", features = ["async", "with-serde"] }
lazy_static = "1.3.0"
ttrpc = { version = "0.8", features = ["async"], default-features = false }
ttrpc = { version = "0.8.4", features = ["async"], default-features = false }
protobuf = "3.2.0"
libc = "0.2.58"
nix = "0.24.2"
Expand Down
14 changes: 12 additions & 2 deletions src/libs/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 src/libs/protocols/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ with-serde = []
async = ["ttrpc/async", "async-trait"]

[dependencies]
ttrpc = "0.8"
ttrpc = "0.8.4"
async-trait = { version = "0.1.42", optional = true }
protobuf = { version = "3.2.0" }
serde = { version = "1.0.130", features = ["derive"] }
Expand Down
14 changes: 12 additions & 2 deletions src/runtime-rs/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 src/runtime-rs/crates/agent/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ serde = { version = "^1.0", features = ["derive"] }
serde_json = ">=1.0.9"
slog = "2.5.2"
slog-scope = "4.4.0"
ttrpc = "0.8"
ttrpc = "0.8.4"
tokio = { version = "1.38.0", features = ["fs", "rt"] }
tracing = "0.1.36"
url = "2.2.2"
Expand Down
2 changes: 1 addition & 1 deletion src/runtime-rs/crates/hypervisor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ rand = "0.8.4"
path-clean = "1.0.1"
lazy_static = "1.4"
tracing = "0.1.36"
ttrpc = {version = "0.8.1", features = ["async"] }
ttrpc = { version = "0.8.4", features = ["async"] }
protobuf = "3.1.0"

kata-sys-util = { path = "../../../libs/kata-sys-util" }
Expand Down
2 changes: 1 addition & 1 deletion src/runtime-rs/crates/runtimes/common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ slog-scope = "4.4.0"
strum = { version = "0.24.0", features = ["derive"] }
thiserror = "^1.0"
tokio = { version = "1.38.0", features = ["rt-multi-thread", "process", "fs"] }
ttrpc = "0.8"
ttrpc = "0.8.4"
persist = { path = "../../persist" }
agent = { path = "../../agent" }
kata-sys-util = { path = "../../../../libs/kata-sys-util" }
Expand Down
2 changes: 1 addition & 1 deletion src/runtime-rs/crates/service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ slog = "2.5.2"
slog-scope = "4.4.0"
tokio = { version = "1.38.0", features = ["rt-multi-thread"] }
tracing = "0.1.36"
ttrpc = "0.8"
ttrpc = "0.8.4"

common = { path = "../runtimes/common" }
containerd-shim-protos = { version = "0.6.0", features = ["async"] }
Expand Down
9 changes: 5 additions & 4 deletions src/tools/agent-ctl/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 src/tools/agent-ctl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ log = "0.4.22"
nix = "0.23.0"
libc = "0.2.112"
# XXX: Must be the same as the version used by the agent
ttrpc = "0.8"
ttrpc = "0.8.4"

# For parsing timeouts
humantime = "2.1.0"
Expand Down
11 changes: 6 additions & 5 deletions src/tools/genpolicy/Cargo.lock

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

55 changes: 9 additions & 46 deletions src/tools/kata-ctl/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 src/tools/kata-ctl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ slog = "2.7.0"
slog-scope = "4.4.0"
hyper = "0.14.20"
tokio = { version = "1.28.1", features = ["signal"] }
ttrpc = "0.6.0"
ttrpc = "0.8.4"

prometheus = { version = "0.13.0", features = ["process"] }
procfs = "0.12.0"
Expand Down

0 comments on commit 6baa60d

Please sign in to comment.