Unverified Commit 586eba66 authored by Neal H. Walfield's avatar Neal H. Walfield
Browse files

Loosen dependency on lalrpop.

There's a new version of `lalrpop`.  The new version remains
compatible with the subset of the API that we use.

Loosen the dependency requirements to also allow it.  Don't actually
upgrade, as it requires a newer version of `rustc` than our MSRV.
parent 70c64294
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -26,7 +26,7 @@ sequoia-openpgp = { version = "2", path = "../openpgp", default-features = false
anyhow = "1.0.18"
capnp-rpc = "0.25"
fs2 = "0.4.2"
lalrpop-util = ">=0.17, <0.23"
lalrpop-util = ">=0.17, <0.24"
libc = "0.2.66"
memsec = { version = ">=0.5", default-features = false }
tempfile = "3.1"
@@ -41,7 +41,7 @@ winapi = { version = "0.3.8", default-features = false, features = ["winsock2"]
ctor = ">= 0.2, <0.7"

[build-dependencies]
lalrpop = { version = ">=0.17, <0.23", default-features = false }
lalrpop = { version = ">=0.17, <0.24", default-features = false }
capnpc = "0.25"

[dev-dependencies]
+2 −2
Original line number Diff line number Diff line
@@ -35,7 +35,7 @@ bzip2 = { version = ">= 0.4, < 0.7", optional = true }
dyn-clone = "1"
flate2 = { version = "1.0.1", optional = true }
idna = ">= 1.0.3, < 2"
lalrpop-util = ">=0.20, <0.23"
lalrpop-util = ">=0.20, <0.24"
libc = "0.2.66"
memsec = { version = ">=0.5, <0.8", default-features = false }
nettle = { version = "7.3", optional = true }
@@ -112,7 +112,7 @@ chrono = { version = "0.4.10", default-features = false, features = ["std", "was
getrandom = { version = "0.2", features = ["js"] }

[build-dependencies]
lalrpop = { version = ">=0.20, <0.23", default-features = false }
lalrpop = { version = ">=0.20, <0.24", default-features = false }

[dev-dependencies]
quickcheck = { version = "1", default-features = false }