Skip to content

Commit

Permalink
fixup! coap: Implement traits independently of feature flag
Browse files Browse the repository at this point in the history
  • Loading branch information
chrysn committed Jan 19, 2024
1 parent ba9ee5e commit d59e202
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@ rand_core_06 = { package = "rand_core", version = "^0.6" }
# For nimble UUID parsing and some debug implementations
hex = { version = "^0.4.3", default-features = false }

coap-numbers = { version = "^0.2.0", optional = true }
coap-numbers = "^0.2.0"

embedded-graphics = "0.6"

# Originally disabled by default because they were not published yet; now
# disabled by default we're moving toward opt-in modules anyway.
coap-message = { version = "^0.2.3", optional = true }
coap-handler = { version = "^0.1.4", optional = true }
coap-message = "^0.2.3"
coap-handler = "^0.1.4"
embedded-nal = { version = "0.6.0", optional = true }
embedded-nal-tcpextensions = { version = "0.1", optional = true }
pin-utils = "0.1"
Expand Down

0 comments on commit d59e202

Please sign in to comment.