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: jasta/coap-server-rs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: rocknitive/coap-server-rs
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.
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Aug 15, 2023

  1. update dependencies

    JcBernack committed Aug 15, 2023
    Copy the full SHA
    dd3e6c5 View commit details
Showing with 14 additions and 14 deletions.
  1. +14 −14 Cargo.toml
28 changes: 14 additions & 14 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -11,21 +11,21 @@ keywords = ["coap", "server", "async", "IoT"]
edition = "2021"

[dependencies]
tokio = { version = "1.17.0", features = ["rt", "macros", "net"] }
tokio-stream = "0.1.8"
tokio-util = { version = "0.7.0", features = ["codec", "net"] }
bytes = "1.1.0"
futures = "0.3.21"
async-trait = "0.1.53"
pin-project = "1.0.10"
dyn-clone = "1.0.5"
anyhow = "1.0.56"
thiserror = "1.0.30"
log = "0.4.16"
coap-lite = "0.9.0"
tokio = { version = "1.31.0", features = ["rt", "macros", "net"] }
tokio-stream = "0.1.14"
tokio-util = { version = "0.7.8", features = ["codec", "net"] }
bytes = "1.4.0"
futures = "0.3.28"
async-trait = "0.1.73"
pin-project = "1.1.3"
dyn-clone = "1.0.12"
anyhow = "1.0.72"
thiserror = "1.0.44"
log = "0.4.20"
coap-lite = "0.11.3"
rand = "0.8.5"

[dev-dependencies]
async-stream = "0.3.3"
async-stream = "0.3.5"
tokio = { version = "1.17.0", features = ["test-util", "rt-multi-thread"] }
env_logger = "0.9.0"
env_logger = "0.10.0"