diff options
author | Stephen Akridge <sakridge@gmail.com> | 2018-10-11 10:40:03 -0700 |
---|---|---|
committer | Stephen Akridge <sakridge@gmail.com> | 2018-10-11 10:40:03 -0700 |
commit | da6e92d16d5fbaafd9a2e9dd293e1cc13662a9db (patch) | |
tree | b2bc38364a65cdce02201baad4920d1c4a31a758 | |
parent | 1a259284ab6177826cbd3b5bff2fd330acb7fbcb (diff) | |
download | mlua-da6e92d16d5fbaafd9a2e9dd293e1cc13662a9db.zip |
Update num-traits dependency to 0.2.6
This crate requires i128 support which is not
added to num-traits until the 0.2.5 release and i128
detection is added in 0.2.6.
-rw-r--r-- | Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -34,7 +34,7 @@ system-lua = ["pkg-config"] [dependencies] libc = { version = "0.2" } failure = { version = "0.1.2" } -num-traits = { version = "0.2" } +num-traits = { version = "0.2.6" } compiletest_rs = { version = "0.3", optional = true } [build-dependencies] |