summaryrefslogtreecommitdiffstats
path: root/crates/core/agent_interface
diff options
context:
space:
mode:
authorLukasz Woznicki <75632179+makr11st@users.noreply.github.com>2022-01-20 21:23:18 +0000
committerGitHub <noreply@github.com>2022-01-20 21:23:18 +0000
commitb299803084113f40a5dcc42f01e561cd831d2fd6 (patch)
treea4aaafb7ad2b6e1d70e67d3a71fa9821c0fd7ea7 /crates/core/agent_interface
parentf9658c812b13410c2bbbaecbce02291e15a03cf8 (diff)
Migrate to edition 2021 (#558)
* Migrate to edition 2021 * Update docs and workflows * Update to latest rust 1.58 * Force version in clippy Signed-off-by: Lukasz Woznicki <lukasz.woznicki@softwareag.com>
Diffstat (limited to 'crates/core/agent_interface')
-rw-r--r--crates/core/agent_interface/Cargo.toml5
1 files changed, 3 insertions, 2 deletions
diff --git a/crates/core/agent_interface/Cargo.toml b/crates/core/agent_interface/Cargo.toml
index f2242405..0e83ec64 100644
--- a/crates/core/agent_interface/Cargo.toml
+++ b/crates/core/agent_interface/Cargo.toml
@@ -2,7 +2,8 @@
name = "agent_interface"
version = "0.5.2"
authors = ["thin-edge.io team <info@thin-edge.io>"]
-edition = "2018"
+edition = "2021"
+rust-version = "1.58"
license = "Apache-2.0"
description = "agent_interface defines all the mqtt topics and messages to be used to invoke the agent."
@@ -12,7 +13,7 @@ description = "agent_interface defines all the mqtt topics and messages to be us
csv = "1.1"
download = { path = "../../common/download" }
nanoid = "0.4"
-serde = { version = "1.0", features = ["derive"] }
+serde = { version = "1.0", features = [ "derive" ] }
serde_json = "1.0"
thiserror = "1.0"