731b97262b
Significant re-design to use copy-on-write and hashes for all data
75 lines
1.9 KiB
TOML
75 lines
1.9 KiB
TOML
[package]
|
|
name = "redoxfs"
|
|
description = "The Redox Filesystem"
|
|
repository = "https://gitlab.redox-os.org/redox-os/redoxfs"
|
|
version = "0.5.0"
|
|
license-file = "LICENSE"
|
|
readme = "README.md"
|
|
authors = ["Jeremy Soller <jackpot51@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
name = "redoxfs"
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "redoxfs"
|
|
path = "src/bin/mount.rs"
|
|
doc = false
|
|
required-features = ["std"]
|
|
|
|
[[bin]]
|
|
name = "redoxfs-ar"
|
|
path = "src/bin/ar.rs"
|
|
doc = false
|
|
required-features = ["std"]
|
|
|
|
[[bin]]
|
|
name = "redoxfs-mkfs"
|
|
path = "src/bin/mkfs.rs"
|
|
doc = false
|
|
required-features = ["std"]
|
|
|
|
[dependencies]
|
|
aes = { version = "=0.7.5", default-features = false }
|
|
argon2 = { version = "0.3.4", default-features = false, features = ["alloc"] }
|
|
# newer versions require edition 2021
|
|
base64ct = { version = "=1.1.1", default-features = false }
|
|
env_logger = { version = "0.9.0", optional = true }
|
|
getrandom = { version = "0.2.5", optional = true }
|
|
log = { version = "0.4.14", default-features = false }
|
|
redox_syscall = "0.2.9"
|
|
seahash = { version = "4.1.0", default-features = false }
|
|
termion = { version = "1.5.6", optional = true }
|
|
uuid = { version = "0.5", default-features = false }
|
|
|
|
[dependencies.simple_endian]
|
|
# https://github.com/rexlunae/simple-endian-rs/pull/5
|
|
git = "https://github.com/michalfita/simple-endian-rs.git"
|
|
rev = "7210f40881d16f7f2e3d8d40f6381fa222843caa"
|
|
default-features = false
|
|
features = [
|
|
"bitwise", "comparisons", "format", "math_ops", "neg_ops", "shift_ops",
|
|
"both_endian", "float_impls", "integer_impls", "byte_impls"
|
|
]
|
|
|
|
[features]
|
|
default = ["std"]
|
|
force-soft = [
|
|
"aes/force-soft"
|
|
]
|
|
std = [
|
|
"env_logger",
|
|
"fuse",
|
|
"getrandom",
|
|
"libc",
|
|
"termion",
|
|
"time",
|
|
"uuid/v4"
|
|
]
|
|
|
|
[target.'cfg(not(target_os = "redox"))'.dependencies]
|
|
fuse = { version = "0.3", optional = true }
|
|
libc = { version = "0.2", optional = true }
|
|
time = { version = "0.1", optional = true }
|