]> git.proxmox.com Git - cargo.git/commit
Auto merge of #4382 - Xanewok:expose-filter-rule, r=alexcrichton
authorbors <bors@rust-lang.org>
Wed, 9 Aug 2017 16:30:21 +0000 (16:30 +0000)
committerbors <bors@rust-lang.org>
Wed, 9 Aug 2017 16:30:21 +0000 (16:30 +0000)
commitcae394308959f28a789ad6c7b3bb4164191c177c
treedabd6fcc639f22f6fdc4f7281b04bf7176c38d32
parent9d161a2f9c1b69f7188f2d3f5e83c21ef0e9bf04
parentfe431f199bf51a8ae3d497ee49dd3ca0a497c639
Auto merge of #4382 - Xanewok:expose-filter-rule, r=alexcrichton

Expose ops::cargo_compile::FilterRule

I've been mindlessly copying and consuming the Cargo API to work on the build plan prototype for RLS and I noticed that, it seems, pub `ops::cargo_compile::CompileFilter` is exported, but not the `ops::cargo_compile::FilterRule`, which `CompileFilter` uses, as a part of a public API.

If I'm wrong and missing something, feel free to ignore/close it. It was possible to match/destructure `CompileFilter` before, but with this change it's possible to use the underlying type.