require nightly
This commit is contained in:
@@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
This is a mandelbrot set viewer written for fun bc it looks weird and cool to me. It's called fractal because it's easy to change the fractal in the code, and I would like to have some sort of simple scripting language for it eventually.
|
This is a mandelbrot set viewer written for fun bc it looks weird and cool to me. It's called fractal because it's easy to change the fractal in the code, and I would like to have some sort of simple scripting language for it eventually.
|
||||||
|
|
||||||
It's normal rust, so `cargo run` should fully compile and start it.
|
It's normal rust, so `cargo run` should fully compile and start it. It requires nightly to help with fixed point operations.
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
#![feature(bigint_helper_methods)]
|
#![feature(bigint_helper_methods)]
|
||||||
#![feature(int_roundings)]
|
#![feature(int_roundings)]
|
||||||
#![feature(unbounded_shifts)]
|
|
||||||
|
|
||||||
use client::ClientApp;
|
use client::ClientApp;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user