From 41fcbb7cff0dbd3d1cf7d03094157f4ff631c578 Mon Sep 17 00:00:00 2001 From: David Kellum Date: Thu, 17 Jan 2019 09:51:58 -0800 Subject: [PATCH] barc-cli: publish lockfile As per tracking issue rust-lang/cargo#5654, this is currently a nightly-only feature and would fail CI or user which is not using a nightly-channel rust+cargo. --- barc-cli/Cargo.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/barc-cli/Cargo.toml b/barc-cli/Cargo.toml index 64df9bf..908a749 100644 --- a/barc-cli/Cargo.toml +++ b/barc-cli/Cargo.toml @@ -1,3 +1,6 @@ +# https://github.com/rust-lang/cargo/issues/5654 +cargo-features = ["publish-lockfile"] + [package] name = "barc-cli" version = "1.0.1" @@ -10,6 +13,7 @@ repository = "https://github.com/dekellum/body-image" readme = "README.md" keywords = ["http", "compression", "serialization"] categories = ["web-programming", "command-line-utilities"] +publish-lockfile = true [badges] travis-ci = { repository="dekellum/body-image" }