Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Increase dependency minor versions where possible [SAME VERSION] #323

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
366 changes: 152 additions & 214 deletions Cargo.lock

Large diffs are not rendered by default.

9 changes: 4 additions & 5 deletions agent/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,20 +18,19 @@ async-stream = "0.2"
async-trait = "0.1.0"
blake2 = "0.9.0"
chrono = "0.4.10"
cfg-if = "0.1"
env_logger = "0.6.1"
cfg-if = "1.0.0"
env_logger = "0.8.3"
futures = { version = "0.3.1", package = "futures" }
futures-core = "0.3"
futures-util = "0.3"
futures-old = { version = "0.1", package = "futures" }
hyper = "0.13.10"
h2 = "=0.2.6"
kube = { version = "0.23.0", features = ["openapi"] }
k8s-openapi = { version = "0.6.0", features = ["v1_16"] }
lazy_static = "1.4"
log = "0.4"
mockall_double = "0.1.0"
prometheus = { version = "0.11.0", features = ["process"] }
mockall_double = "0.2.0"
prometheus = { version = "0.12.0", features = ["process"] }
prost = "0.6"
rand = "0.8.3"
serde = "1.0.104"
Expand Down
2 changes: 1 addition & 1 deletion controller/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ kube = { version = "0.23.0", features = ["openapi"] }
k8s-openapi = { version = "0.6.0", features = ["v1_16"] }
lazy_static = "1.4"
log = "0.4"
prometheus = { version = "0.11.0", features = ["process"] }
prometheus = { version = "0.12.0", features = ["process"] }
serde = "1.0.104"
serde_derive = "1.0.104"
serde_json = "1.0.45"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ edition = "2018"
[dependencies]
akri-discovery-utils = { path = "../../discovery-utils" }
akri-debug-echo = { path = "../../discovery-handlers/debug-echo" }
env_logger = "0.6.1"
env_logger = "0.8.3"
log = "0.4"
tokio = { version = "0.2", features = ["rt-threaded", "sync", "time", "stream", "fs", "macros", "uds"] }
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ edition = "2018"
[dependencies]
akri-discovery-utils = { path = "../../discovery-utils" }
akri-onvif = { path = "../../discovery-handlers/onvif" }
env_logger = "0.6.1"
env_logger = "0.8.3"
log = "0.4"
tokio = { version = "0.2", features = ["rt-threaded", "sync", "time", "stream", "fs", "macros", "uds"] }
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ edition = "2018"
[dependencies]
akri-discovery-utils = { path = "../../discovery-utils" }
akri-opcua = { path = "../../discovery-handlers/opcua" }
env_logger = "0.6.1"
env_logger = "0.8.3"
log = "0.4"
tokio = { version = "0.2", features = ["rt-threaded", "sync", "time", "stream", "fs", "macros", "uds"] }
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ edition = "2018"
[dependencies]
akri-discovery-utils = { path = "../../discovery-utils" }
akri-udev = { path = "../../discovery-handlers/udev" }
env_logger = "0.6.1"
env_logger = "0.8.3"
log = "0.4"
tokio = { version = "0.2", features = ["rt-threaded", "sync", "time", "stream", "fs", "macros", "uds"] }
2 changes: 1 addition & 1 deletion discovery-handlers/debug-echo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ edition = "2018"
akri-discovery-utils = { path = "../../discovery-utils" }
anyhow = "1.0.38"
async-trait = "0.1.0"
env_logger = "0.6.1"
env_logger = "0.8.3"
futures-util = "0.3"
log = "0.4"
serde = "1.0.104"
Expand Down
2 changes: 1 addition & 1 deletion discovery-handlers/onvif/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ akri-shared = { path = "../../shared" }
anyhow = "1.0.38"
async-trait = "0.1.0"
bytes = "0.5"
env_logger = "0.6.1"
env_logger = "0.8.3"
futures-util = "0.3"
hyper = { version = "0.13.5", package = "hyper" }
log = "0.4"
Expand Down
4 changes: 2 additions & 2 deletions discovery-handlers/opcua/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ akri-discovery-utils = { path = "../../discovery-utils" }
akri-shared = { path = "../../shared" }
anyhow = "1.0.38"
async-trait = "0.1.0"
env_logger = "0.6.1"
env_logger = "0.8.3"
futures-util = "0.3"
log = "0.4"
opcua-client = "0.7.0"
opcua-client = "0.8.0"
prost = "0.6"
serde = "1.0.104"
serde_json = "1.0.45"
Expand Down
4 changes: 2 additions & 2 deletions discovery-handlers/udev/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ edition = "2018"
akri-discovery-utils = { path = "../../discovery-utils" }
anyhow = "1.0.38"
async-trait = "0.1.0"
env_logger = "0.6.1"
env_logger = "0.8.3"
futures-util = "0.3"
log = "0.4"
pest = "2.0"
Expand All @@ -23,7 +23,7 @@ serde_yaml = "0.8.11"
serde_derive = "1.0.104"
tokio = { version = "0.2", features = ["rt-threaded", "sync", "time", "stream", "fs", "macros", "uds"] }
tonic = {version = "0.1.0", features = ["tls"] }
udev = "0.4"
udev = "0.5"

[dev-dependencies]
mockall = "0.9.0"
4 changes: 2 additions & 2 deletions samples/brokers/udev-video-broker/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ edition = "2018"

[dependencies]
akri-shared = { path = "../../../shared" }
env_logger = "0.6.1"
env_logger = "0.8.3"
futures = { version = "0.1", package = "futures" }
lazy_static = "1.4"
log = "0.4.3"
prometheus = { version = "0.11.0", features = ["process"] }
prometheus = { version = "0.12.0", features = ["process"] }
prost = "0.6"
tokio = { version = "0.2", features = ["rt-threaded", "time", "stream", "fs", "macros", "uds"] }
tonic = "0.1"
Expand Down
4 changes: 2 additions & 2 deletions shared/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ anyhow = "1.0.38"
futures = "0.3.1"
futures-old = { version = "0.1", package = "futures" }
futures-util = "0.3"
env_logger = "0.6.1"
env_logger = "0.8.3"
kube = { version = "0.23.0", features = ["openapi"] }
k8s-openapi = { version = "0.6.0", features = ["v1_16"] }
log = "0.4"
mockall = "0.9.0"
prometheus = { version = "0.11.0", features = ["process"] }
rand = "0.7"
rand = "0.8.3"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
Expand Down