summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorLukasz Woznicki <75632179+makr11st@users.noreply.github.com>2021-10-11 10:53:56 +0100
committerGitHub <noreply@github.com>2021-10-11 10:53:56 +0100
commit37cd02d1f741b6ee7ba8d6c2ca0a593242619736 (patch)
treec4945a5694079b45bf628057746217b710205d9a /common
parent720f3909f23b9f4e03dc85e03ea10248a1cdc878 (diff)
Update all dependencies (#487)
* Update all dependencies for 0.4 Signed-off-by: Lukasz Woznicki <lukasz.woznicki@softwareag.com>
Diffstat (limited to 'common')
-rw-r--r--common/batcher/Cargo.toml6
-rw-r--r--common/certificate/Cargo.toml12
-rw-r--r--common/flockfile/Cargo.toml2
-rw-r--r--common/json_writer/Cargo.toml2
-rw-r--r--common/mqtt_client/Cargo.toml12
-rw-r--r--common/tedge_users/Cargo.toml2
-rw-r--r--common/tedge_utils/Cargo.toml2
7 files changed, 19 insertions, 19 deletions
diff --git a/common/batcher/Cargo.toml b/common/batcher/Cargo.toml
index 37816fbd..aceca370 100644
--- a/common/batcher/Cargo.toml
+++ b/common/batcher/Cargo.toml
@@ -6,8 +6,8 @@ edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
-chrono = "0.4.19"
-tokio = { version = "1.8", features = ["sync", "time"] }
+chrono = "0.4"
+tokio = { version = "1.12", features = ["sync", "time"] }
[dev-dependencies]
-tokio = { version = "1.8", features = ["rt", "macros"] }
+tokio = { version = "1.12", features = ["rt", "macros"] }
diff --git a/common/certificate/Cargo.toml b/common/certificate/Cargo.toml
index 14094264..d432dd62 100644
--- a/common/certificate/Cargo.toml
+++ b/common/certificate/Cargo.toml
@@ -7,14 +7,14 @@ edition = "2018"
[dependencies]
chrono = "0.4"
-rcgen = { version = "0.8.11", features = ["pem", "zeroize"] }
+rcgen = { version = "0.8", features = ["pem", "zeroize"] }
sha-1 = "0.9"
thiserror = "1.0"
-x509-parser = "0.9"
-zeroize = "1.3"
+x509-parser = "0.12"
+zeroize = "1.4"
[dev-dependencies]
+anyhow = "1.0"
+assert_matches = "1.5"
base64 = "0.13"
-pem = "0.8"
-anyhow = "1.0.40"
-assert_matches = "1.5.0"
+pem = "1.0"
diff --git a/common/flockfile/Cargo.toml b/common/flockfile/Cargo.toml
index 7b793929..239719d9 100644
--- a/common/flockfile/Cargo.toml
+++ b/common/flockfile/Cargo.toml
@@ -8,8 +8,8 @@ edition = "2018"
thiserror = "1.0"
[target.'cfg(unix)'.dependencies]
-tracing = { version = "0.1", features = ["log"] }
nix = "0.23"
+tracing = { version = "0.1", features = ["log"] }
[dev-dependencies]
assert_matches = "1.5"
diff --git a/common/json_writer/Cargo.toml b/common/json_writer/Cargo.toml
index a5a3208c..ca5ef51f 100644
--- a/common/json_writer/Cargo.toml
+++ b/common/json_writer/Cargo.toml
@@ -4,8 +4,8 @@ version = "0.3.2"
edition = "2018"
[dependencies]
-thiserror = "1.0"
serde_json = "1"
+thiserror = "1.0"
[dev-dependencies]
anyhow = "1.0"
diff --git a/common/mqtt_client/Cargo.toml b/common/mqtt_client/Cargo.toml
index 62f57ccc..51841d9e 100644
--- a/common/mqtt_client/Cargo.toml
+++ b/common/mqtt_client/Cargo.toml
@@ -6,14 +6,14 @@ edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
-rumqttc = "0.8.0"
-thiserror = "1.0"
-tokio = { version = "1.8", features = ["sync", "macros"] }
-mockall = "0.10"
async-trait = "0.1"
+mockall = "0.10"
+rumqttc = "0.9"
+thiserror = "1.0"
+tokio = { version = "1.12", features = ["sync", "macros"] }
[dev-dependencies]
-anyhow= "1.0"
+anyhow = "1.0"
async-log = "2.0"
env_logger = "0.9"
futures = "0.3"
@@ -21,7 +21,7 @@ futures-timer = "3.0"
json = "0.12"
log = "0.4"
rand = "0.8"
-serde = "1.0.126"
+serde = "1.0"
tedge_utils = { path = "../../common/tedge_utils" }
tokio-test = "0.4"
diff --git a/common/tedge_users/Cargo.toml b/common/tedge_users/Cargo.toml
index 7e238d8f..ff6d8e9d 100644
--- a/common/tedge_users/Cargo.toml
+++ b/common/tedge_users/Cargo.toml
@@ -9,4 +9,4 @@ edition = "2018"
thiserror = "1.0"
[target.'cfg(unix)'.dependencies]
-users = "0.11.0"
+users = "0.11"
diff --git a/common/tedge_utils/Cargo.toml b/common/tedge_utils/Cargo.toml
index af756b0c..626cb529 100644
--- a/common/tedge_utils/Cargo.toml
+++ b/common/tedge_utils/Cargo.toml
@@ -18,7 +18,7 @@ rumqttd = "0.7"
rumqttlog = "0.7"
tempfile = "3.2"
thiserror = "1.0"
-tokio = { version = "1.9", default_features = false, features = [ "fs", "io-util", "macros", "rt-multi-thread","signal"] }
+tokio = { version = "1.12", default_features = false, features = [ "fs", "io-util", "macros", "rt-multi-thread","signal"] }
tracing = { version = "0.1", features = [], optional = true }
tracing-subscriber = { version = "0.2", optional = true }