0.6.2: Make libredox only required for std feature
... | ... | @@ -2,7 +2,7 @@ |
name = "redoxfs" | ||
description = "The Redox Filesystem" | ||
repository = "https://gitlab.redox-os.org/redox-os/redoxfs" | ||
version = "0.6.1" | ||
version = "0.6.2" | ||
license-file = "LICENSE" | ||
readme = "README.md" | ||
authors = ["Jeremy Soller <jackpot51@gmail.com>"] | ||
... | ... | @@ -44,7 +44,7 @@ seahash = { version = "4.1.0", default-features = false } |
termion = { version = "2", optional = true } | ||
uuid = { version = "1.4", default-features = false } | ||
redox-path = "0.3.0" | ||
libredox = "0.1.3" | ||
libredox = { version = "0.1.3", optional = true } | ||
# https://github.com/rexlunae/simple-endian-rs/pull/5 | ||
[dependencies.redox_simple_endian] | ||
... | ... | @@ -65,6 +65,7 @@ std = [ |
"fuser", | ||
"getrandom", | ||
"libc", | ||
"libredox", | ||
"range-tree", | ||
"termion", | ||
"time", | ||
... | ... |
Please register or sign in to comment