Skip to content

Commit

Permalink
Found working combination of minimum versions
Browse files Browse the repository at this point in the history
  • Loading branch information
sunsided committed Jul 2, 2024
1 parent 0250720 commit 17c0b04
Showing 1 changed file with 34 additions and 2 deletions.
36 changes: 34 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,44 @@ slice-group-by = "0.3.1"

# Unblock minimal dependency version check
[dependencies.proc-macro2]
version = ">1.0.60"
version = ">=1.0.86"
default-features = false
optional = true

[dependencies.proc-macro-error]
version = "1.0.4"
default-features = false
optional = true

[dependencies.quote]
version = "1.0.36"
default-features = false
optional = true

[dependencies.defmt-parser]
version = "0.3.4"
default-features = false
optional = true

[dependencies.defmt-test-macros]
version = "0.3.1"
default-features = false
optional = true

[dependencies.thiserror]
version = "1.0.61"
default-features = false
optional = true

[dependencies.thiserror-impl]
version = "1.0.61"
default-features = false
optional = true

[features]
can = ["dep:bxcan"]
default = ["rt", "ld", "usb", "can", "rtc", "enumset"]
defmt = ["dep:defmt"]
defmt = ["dep:defmt", "dep:defmt-parser", "dep:defmt-test-macros", "dep:thiserror", "dep:thiserror-impl", "dep:proc-macro-error", "dep:quote"]

device-selected = []
direct-call-deprecated = []
Expand Down

0 comments on commit 17c0b04

Please sign in to comment.