Skip to content

Commit

Permalink
feat: update dependency versions.
Browse files Browse the repository at this point in the history
Also remove backtrace from `error-chain` for XP support.
  • Loading branch information
darfink committed Sep 14, 2017
1 parent c585dfd commit ff71a86
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,18 @@ static = []
[dependencies]
boolinator = "2.4.0"
cfg-if = "0.1.1"
error-chain = "0.10.0"
generic-array = "0.8.2"
lazy_static = "0.2.8"
libc = "0.2"
matches = "0.1.6"
region = "0.0.7"
region = "0.0.9"
slice-pool = "0.3.4"
mmap-fixed = "0.1"

[dependencies.error-chain]
version = "0.11.0"
default-features = false

[dev-dependencies]
volatile_cell = "1.0.0"

Expand Down
2 changes: 1 addition & 1 deletion src/alloc/search.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ impl Iterator for RegionIter {

/// Returns the closest free region for the current address.
fn next(&mut self) -> Option<Self::Item> {
let page_size = region::page_size();
let page_size = region::page::page_size();

while self.current > 0 && self.range.contains(self.current) {
match region::query(self.current as *const _) {
Expand Down

0 comments on commit ff71a86

Please sign in to comment.