[dependencies.iocore]
default-features = false
version = "2.3.1"
[lib]
bench = false
doctest = false
name = "iocore_test"
path = "iocore-test/lib.rs"
[package]
authors = ["Gabriel DeMoura <gabrielteratos@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["filesystem"]
description = """
IOCore is a safe library for unix CLI tools and Systems programming.
IOCore provides the [`iocore::Path`] abstraction of file-system paths
designed to replace most [`std::path`] and [`std::fs`] operations with
practical methods, other abstractions include:
- handling file-system permissions via [`iocore::PathPermissions`]
powered by the crate [`trilobyte`].
- handling file-system timestamps via [`iocore::PathTimestamps`]
granularly via [`iocore::PathDateTime`].
IOCore provides the [`iocore::walk_dir`] function and its companion
trait [`iocore::WalkProgressHandler`] which traverses file-systems
quickly via threads.
IOcore provides [`iocore::User`] which provides unix user information
such as uid, path to home etc.
The module [`iocore::env`] provides [`iocore::env:args`] returns a
[`Vec<String>`] from [`std::env:args`], and [`iocore::env:var`] that
returns environment variables as string.
"""
documentation = "https://docs.rs/iocore"
edition = "2021"
homepage = "https://github.com/gabrielfalcao/iocore/tree/main/crates/iocore"
keywords = ["io", "path", "unix", "filesystem", "system"]
license = "MIT OR Apache-2.0"
name = "iocore-test"
readme = "README.md"
repository = "https://github.com/gabrielfalcao/iocore"
version = "2.3.2"
[package.metadata]
cargo-args = ["-Zmtime-on-use", "-Zavoid-dev-deps", "-Zcustom_mir"]
[[test]]
name = "test"
path = "tests/test.rs"