Skip to content

Commit 7d35074

Browse files
committed
Use compiler_builtins_snapshot from crates.io
This should avoid rust-lang/compiler-builtins#87
1 parent 2bacddb commit 7d35074

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

Cargo.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,13 @@ version = "0.3.0"
88
[dependencies]
99
bit_field = "0.4.0"
1010
bitflags = "0.7.0"
11+
compiler-builtins-snapshot = "0.0.20161008+c56faf22abb39724008148d58f12bcd43b6d236b"
1112
volatile = "0.2.0"
1213

1314
[dependencies.arrayvec]
1415
version = "0.3.20"
1516
default-features = false
1617

17-
[dependencies.compiler_builtins]
18-
git = "https://github.com/japaric/compiler-builtins"
19-
2018
[features]
2119
default = ["panic-fmt", "unwind-cpp"]
2220
panic-fmt = []

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#![feature(compiler_builtins_lib)]
99
#![no_std]
1010

11-
extern crate compiler_builtins;
11+
extern crate compiler_builtins_snapshot;
1212
#[macro_use]
1313
extern crate bitflags;
1414
extern crate bit_field;

0 commit comments

Comments
 (0)