We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4c0bce2 + 1628924 commit bc6adf9Copy full SHA for bc6adf9
2 files changed
Cargo.toml
@@ -2,6 +2,7 @@
2
name = "mandelbrot"
3
version = "0.2.0"
4
authors = ["Jim Blandy <jimb@red-bean.com>"]
5
+edition = "2018"
6
7
[dependencies]
8
num = "0.1.34"
src/main.rs
@@ -1,4 +1,3 @@
1
-extern crate num;
use num::Complex;
/// Try to determine if `c` is in the Mandelbrot set, using at most `limit`
@@ -127,8 +126,6 @@ fn render(pixels: &mut [u8],
127
126
}
128
129
130
-extern crate image;
131
-
132
use image::ColorType;
133
use image::png::PNGEncoder;
134
use std::fs::File;
0 commit comments