Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: GunnarMorrigan/mqrstt
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: MCloudTT/mqrstt
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Can’t automatically merge. Don’t worry, you can still create the pull request.
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Mar 2, 2023

  1. Copy the full SHA
    c155a65 View commit details
  2. Changed to smol 1.2.5

    Nereuxofficial committed Mar 2, 2023
    Copy the full SHA
    f55dd46 View commit details
Showing with 10 additions and 3 deletions.
  1. +10 −3 Cargo.toml
13 changes: 10 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -12,6 +12,13 @@ keywords = [ "MQTT", "IoT", "MQTTv5", "messaging", "client" ]
description = "Pure rust MQTTv5 client implementation for Smol, Tokio and soon sync too."

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[patch.crates-io]
smol = { git = "https://github.com/esp-rs-compat/smol" }
polling = { git = "https://github.com/esp-rs-compat/polling" }
socket2 = { git = "https://github.com/esp-rs-compat/socket2" }
getrandom = { version = "0.2", git = "https://github.com/esp-rs-compat/getrandom.git" }
#getrandom1 = { version = "0.1", git = "https://github.com/esp-rs-compat/getrandom.git", package = "getrandom", branch = "0.1" }
embedded-io = { git = "https://github.com/ivmarkov/embedded-io" }

[features]
default = ["smol", "tokio"]
@@ -39,17 +46,17 @@ async-trait = "0.1.61"
tokio = { version = "1.24.1", features = ["macros", "io-util", "net", "time"], optional = true }

# smol feature flag
smol = { version = "1.3.0", optional = true }
smol = { version = "1.2.5", optional = true }

[dev-dependencies]
pretty_assertions = "1.3.0"
tokio = { version = "1.24.1", features = ["rt-multi-thread", "rt", "macros", "sync", "io-util", "net", "time"] }
smol = { version = "1.3.0" }
smol = "1.2.5"
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }

rustls = { version = "0.20.7" }
rustls-pemfile = { version = "1.0.1" }
webpki = { version = "0.22.0" }
async-rustls = { version = "0.3.0" }
tokio-rustls = "0.23.4"
rstest = "0.16.0"
rstest = "0.16.0"