diff --git a/agent/Cargo.toml b/agent/Cargo.toml index 6933bc1..df8a98f 100644 --- a/agent/Cargo.toml +++ b/agent/Cargo.toml @@ -9,22 +9,22 @@ edition = "2021" log = "0.4.0" env_logger = "0.10.0" anyhow = "1.0.69" -serialport = {version = "4.2.0", default-features = false} +serialport = { version = "4.2.0", default-features = false } serde = { version = "1.0.152", features = ["derive"] } serde_json = "1.0.93" serde_yaml = "0.9" -clap = { version="4.1.6", features=["derive"] } +clap = { version = "4.1.6", features = ["derive"] } unshare = "0.7.0" thiserror = "1.0.32" -tonic = { version = "0.9.2", features = ["transport"] } -prost = "0.11.9" +tonic = { version = "0.10.2", features = ["transport"] } +prost = "0.12.1" tokio = { version = "1.0", features = ["rt-multi-thread", "macros"] } tokio-stream = { version = "0.1.8", features = ["net"] } -default-net = "0.14.1" +default-net = "0.18.0" [build-dependencies] -tonic-build = { version = "0.9.2", features = ["prost"]} +tonic-build = { version = "0.10.2", features = ["prost"] } [lib] name = "agent_lib" diff --git a/api/Cargo.toml b/api/Cargo.toml index febd44a..9c6f1de 100644 --- a/api/Cargo.toml +++ b/api/Cargo.toml @@ -21,11 +21,11 @@ network-interface = "1.0.0" cidr = "0.2.1" rand = "0.8.4" tokio = { version = "1.0", features = ["rt-multi-thread", "macros", "process"] } -tonic = { version = "0.9.2", features = ["transport"] } -prost = "0.11.9" +tonic = { version = "0.10.2", features = ["transport"] } +prost = "0.12.1" [build-dependencies] -tonic-build = { version = "0.9.2", features = ["prost"] } +tonic-build = { version = "0.10.2", features = ["prost"] } [dependencies.uuid] version = "1.3.0"