Skip to content

Commit d17a6a8

Browse files
committed
Update core_arch to latest git version
1 parent e333526 commit d17a6a8

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ maintenance = { status = "experimental" }
2222

2323
[dependencies]
2424
cfg-if = "0.1.10"
25-
core_arch = { version = "0.1.5", optional = true }
25+
core_arch = { git = "https://github.com/rust-lang/stdarch", optional = true }
2626
libm = "0.1.4"
2727

2828
[features]

examples/mandelbrot/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ edition = "2018"
99
packed_simd = { path = "../.." }
1010
rayon = "^1.0"
1111
ispc = { version = "^1.0.4", optional = true }
12-
structopt = "0.3.0"
12+
structopt = { version = "0.3.0", features = ["color"] }
1313

1414
[build-dependencies]
1515
ispc = { version = "^1.0.4", optional = true }

examples/mandelbrot/src/main.rs

-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ use structopt::StructOpt;
1212
///
1313
/// Output is printed to `stdout`.
1414
#[derive(StructOpt)]
15-
#[structopt(raw(setting = "structopt::clap::AppSettings::ColoredHelp"))]
1615
struct Opt {
1716
/// Image width.
1817
width: usize,

0 commit comments

Comments
 (0)