mirror of
https://github.com/ProgrammingRust/mandelbrot
synced 2024-11-17 03:25:30 +00:00
Merge branch 'common-fixes' into task-queue
This commit is contained in:
commit
a3a6f3474b
@ -2,6 +2,7 @@
|
||||
name = "mandelbrot"
|
||||
version = "0.2.0"
|
||||
authors = ["Jim Blandy <jimb@red-bean.com>"]
|
||||
edition = "2018"
|
||||
|
||||
[dependencies]
|
||||
num = "0.1.34"
|
||||
|
@ -1,4 +1,3 @@
|
||||
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],
|
||||
}
|
||||
}
|
||||
|
||||
extern crate image;
|
||||
|
||||
use image::ColorType;
|
||||
use image::png::PNGEncoder;
|
||||
use std::fs::File;
|
||||
|
Loading…
Reference in New Issue
Block a user