Skip to content

Commit

Permalink
Lock exact versions of internal crates
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinmehall committed Oct 6, 2019
1 parent c08ff13 commit 4156871
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ categories = ["parsing"]
readme = "README.md"

[dependencies]
peg-macros = { path = "./peg-macros", version = "0.6" }
peg-runtime = { path = "./peg-runtime", version = "0.6" }
peg-macros = { path = "./peg-macros", version = "= 0.6.0" }
peg-runtime = { path = "./peg-runtime", version = "= 0.6.0" }

[dev-dependencies]
trybuild = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion peg-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ description = "Procedural macros for rust-peg. To use rust-peg, see the `peg` cr
[dependencies]
quote = "1.0"
proc-macro2 = "1.0"
peg-runtime = { version = "0.6", path = "../peg-runtime" }
peg-runtime = { version = "= 0.6.0", path = "../peg-runtime" }

[features]
trace = []
Expand Down

0 comments on commit 4156871

Please sign in to comment.