Skip to content

Commit f90a81c

Browse files
committed
with byteorder 1.3, the i128 feature is a NOP
1 parent 4b17533 commit f90a81c

File tree

4 files changed

+2
-4
lines changed

4 files changed

+2
-4
lines changed

Cargo.lock

-1
Original file line numberDiff line numberDiff line change
@@ -3253,7 +3253,6 @@ dependencies = [
32533253
name = "rustc-workspace-hack"
32543254
version = "1.0.0"
32553255
dependencies = [
3256-
"byteorder",
32573256
"crossbeam-utils 0.6.5",
32583257
"serde",
32593258
"serde_json",

src/librustc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ syntax = { path = "../libsyntax" }
3131
syntax_pos = { path = "../libsyntax_pos" }
3232
backtrace = "0.3.3"
3333
parking_lot = "0.9"
34-
byteorder = { version = "1.1", features = ["i128"]}
34+
byteorder = { version = "1.3" }
3535
chalk-engine = { version = "0.9.0", default-features=false }
3636
rustc_fs_util = { path = "../librustc_fs_util" }
3737
smallvec = { version = "0.6.7", features = ["union", "may_dangle"] }

src/librustc_mir/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ rustc_lexer = { path = "../librustc_lexer" }
2424
rustc_serialize = { path = "../libserialize", package = "serialize" }
2525
syntax = { path = "../libsyntax" }
2626
syntax_pos = { path = "../libsyntax_pos" }
27-
byteorder = { version = "1.1", features = ["i128"] }
27+
byteorder = { version = "1.3" }
2828
rustc_apfloat = { path = "../librustc_apfloat" }
2929
smallvec = { version = "0.6.7", features = ["union", "may_dangle"] }

src/tools/rustc-workspace-hack/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@ crossbeam-utils = { version = "0.6.5", features = ["nightly"] }
6262
serde = { version = "1.0.82", features = ['derive'] }
6363
serde_json = { version = "1.0.31", features = ["raw_value"] }
6464
smallvec = { version = "0.6", features = ['union', 'may_dangle'] }
65-
byteorder = { version = "1.2.7", features = ["i128"] }
6665

6766

6867
[target.'cfg(not(windows))'.dependencies]

0 commit comments

Comments
 (0)