From 415687157c6c3d034b69d048d05011b313919e3c Mon Sep 17 00:00:00 2001 From: Kevin Mehall Date: Sun, 6 Oct 2019 10:43:54 -0700 Subject: [PATCH] Lock exact versions of internal crates --- Cargo.toml | 4 ++-- peg-macros/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index be408d4..e4b1743 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" diff --git a/peg-macros/Cargo.toml b/peg-macros/Cargo.toml index 9ec4245..34a1149 100644 --- a/peg-macros/Cargo.toml +++ b/peg-macros/Cargo.toml @@ -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 = []