diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2017-06-08 14:10:36 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2017-06-20 07:11:29 -0700 |
| commit | a4024c58e1e5c92cfe3ed39ed9f5b96f3f38122e (patch) | |
| tree | 2c29cfb9741ad811d86780469eb4c570158fe216 /src/test/run-make/save-analysis | |
| parent | 380100c568c1c390c837caf98338d07c4d8a0462 (diff) | |
| download | rust-a4024c58e1e5c92cfe3ed39ed9f5b96f3f38122e.tar.gz rust-a4024c58e1e5c92cfe3ed39ed9f5b96f3f38122e.zip | |
Remove the in-tree `flate` crate
A long time coming this commit removes the `flate` crate in favor of the `flate2` crate on crates.io. The functionality in `flate2` originally flowered out of `flate` itself and is additionally the namesake for the crate. This will leave a gap in the naming (there's not `flate` crate), which will likely cause a particle collapse of some form somewhere.
Diffstat (limited to 'src/test/run-make/save-analysis')
| -rw-r--r-- | src/test/run-make/save-analysis/foo.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/test/run-make/save-analysis/foo.rs b/src/test/run-make/save-analysis/foo.rs index 3fe1479f5f2..5cb363ac344 100644 --- a/src/test/run-make/save-analysis/foo.rs +++ b/src/test/run-make/save-analysis/foo.rs @@ -18,7 +18,6 @@ extern crate graphviz; extern crate krate2; extern crate krate2 as krate3; -extern crate flate as myflate; use graphviz::RenderOption; use std::collections::{HashMap,HashSet}; @@ -52,7 +51,6 @@ fn test_alias<I: Iterator>(i: Option<<I as Iterator>::Item>) { krate2::hello(); krate3::hello(); - myflate::deflate_bytes(&[]); let x = (3isize, 4usize); let y = x.1; |
