Skip to content

Commit

Permalink
upgrade api-proxy module to tokio1 (#4879)
Browse files Browse the repository at this point in the history
Upgrades api-proxy and dependecies to tokio1 ecosystem
  • Loading branch information
dmolokanov authored Apr 27, 2021
1 parent 0d579a7 commit 8155604
Show file tree
Hide file tree
Showing 23 changed files with 3,003 additions and 2,238 deletions.
749 changes: 200 additions & 549 deletions edge-modules/api-proxy-module/Cargo.lock

Large diffs are not rendered by default.

21 changes: 10 additions & 11 deletions edge-modules/api-proxy-module/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,26 +7,25 @@ edition = "2018"

[dependencies]
anyhow = "1.0"
base64 = "0.11"
base64 = "0.13"
chrono = "0.4"
env_logger = "0.7"
env_logger = "0.8"
envsubst = "0.2"
futures = "0.3"
futures-util = "0.3"
log = "0.4"
md5 = "0.7"
regex = "1.3"
regex = "1.4"
serde_json = "1.0"
tokio = { version = "0.2", features = ["tcp", "time", "process","signal","sync"] }
percent-encoding = "1.0"
url = "2.1"
tokio = { version = "1.5", features = ["signal", "rt-multi-thread"] }
percent-encoding = "2.1"
url = "2.2"

azure-iot-mqtt = { path = "./rust-sdk/azure-iot-mqtt" }
edgelet-client = { git = "https://github.com/Azure/iotedge", rev = "4cd508" }
mqtt3 = { git = "https://github.com/Azure/iotedge", rev = "4cd508" }
edgelet-client = { path = "../../mqtt/edgelet-client" }
mqtt3 = { path = "../../mqtt/mqtt3" }

[dev-dependencies]
lazy_static = "1.4"
matches = "0.1"
mockito = "0.25"
tokio = { version = "0.2", features = ["macros"] }
mockito = "0.30"
tokio = { version = "1.5", features = ["macros"] }
Loading

0 comments on commit 8155604

Please sign in to comment.