From f0f8580eccb98288fb995556346fa5d19f6abc97 Mon Sep 17 00:00:00 2001 From: David Teller Date: Fri, 9 Mar 2018 17:59:44 +0100 Subject: [PATCH] Issue #11 - Reduce package size This patch: - excludes `mozilla_webidls.zip` from the deployed package; - upgrades lalrpop-* to 0.14.0, which has smaller files. --- Cargo.toml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 68fe48d..116271f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,12 +10,13 @@ name = "webidl" readme = "README.md" repository = "https://github.com/sgodwincs/webidl-rs" version = "0.4.1" +exclude = ["tests/*.zip"] [build-dependencies] -lalrpop = "0.13.1" +lalrpop = "^0.14" [dependencies] -lalrpop-util = "0.13.1" +lalrpop-util = "^0.14" [dependencies.clippy] optional = true