Skip to content

Commit

Permalink
Merge #384
Browse files Browse the repository at this point in the history
384: Pin unstable path dependencies r=jonas-schievink a=Urhengulas

Fixes #378 

Co-authored-by: Urhengulas <johann.hemmann@code.berlin>
  • Loading branch information
bors[bot] and Urhengulas authored Feb 11, 2021
2 parents 1081084 + acd7c5b commit 2595cab
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion decoder/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repository = "https://github.com/knurling-rs/defmt"
version = "0.1.4"

[dependencies]
defmt-parser = { path = "../parser", features = ["unstable"], version = "0.1.0" }
defmt-parser = { path = "../parser", features = ["unstable"], version = "=0.1.0" }
byteorder = "1"
colored = "2.0.0"
leb128 = "0.2.4"
Expand Down
2 changes: 1 addition & 1 deletion macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ proc-macro = true
unstable-test = []

[dependencies]
defmt-parser = { path = "../parser", features = ["unstable"], version = "0.1.0" }
defmt-parser = { path = "../parser", features = ["unstable"], version = "=0.1.0" }
quote = "1.0.7"
proc-macro2 = "1.0.18"

Expand Down
2 changes: 1 addition & 1 deletion print/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ version = "0.1.0"

[dependencies]
anyhow = "1.0.38"
defmt-decoder = { version = "0.1.4", path = "../decoder", features = ["unstable"] }
defmt-decoder = { path = "../decoder", features = ["unstable"], version = "=0.1.4" }
log = "0.4.13"
structopt = "0.3.21"
2 changes: 1 addition & 1 deletion qemu-run/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ version = "0.1.0"

[dependencies]
anyhow = "1.0.32"
defmt-decoder = { path = "../decoder", features = ["unstable"] }
defmt-decoder = { path = "../decoder", features = ["unstable"], version = "=0.1.4" }

0 comments on commit 2595cab

Please sign in to comment.