Skip to content

Commit bc6adf9

Browse files
committed
Merge branch 'common-fixes' into single-threaded
2 parents 4c0bce2 + 1628924 commit bc6adf9

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
name = "mandelbrot"
33
version = "0.2.0"
44
authors = ["Jim Blandy <[email protected]>"]
5+
edition = "2018"
56

67
[dependencies]
78
num = "0.1.34"

src/main.rs

-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
extern crate num;
21
use num::Complex;
32

43
/// Try to determine if `c` is in the Mandelbrot set, using at most `limit`
@@ -127,8 +126,6 @@ fn render(pixels: &mut [u8],
127126
}
128127
}
129128

130-
extern crate image;
131-
132129
use image::ColorType;
133130
use image::png::PNGEncoder;
134131
use std::fs::File;

0 commit comments

Comments
 (0)