[[bin]]
name = "fiox_cp"
path = "src/bin/fiox_cp.rs"
[[bin]]
name = "fiox_test_write"
path = "src/bin/fiox_test_write.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
features = ["derive"]
version = "4"
[dependencies.indicatif]
version = "0.18"
[lib]
name = "fiox"
path = "src/lib.rs"
[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "file I/O using io_uring/iocp"
edition = "2024"
exclude = ["test_data/*"]
license = "MIT"
name = "fiox"
readme = "README.md"
repository = "https://github.com/keithyin/fiox"
version = "0.2.0"
[target.'cfg(target_os = "linux")'.dependencies.io-uring]
version = "0.7"
[target.'cfg(target_os = "linux")'.dependencies.libc]
version = "0.2"
[target.'cfg(target_os = "windows")'.dependencies.windows-sys]
features = ["Win32_System_IO", "Win32_Security", "Win32_Foundation", "Win32_Storage_FileSystem", "Win32_System_Threading", "Win32_System_Memory"]
version = "0.61"