hdfs-native 0.13.4

Native HDFS client implementation in Rust
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "hdfs-native"
version = "0.13.4"
authors = ["Adam Binford <adamq43@gmail.com>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Native HDFS client implementation in Rust"
homepage = "https://github.com/Kimahriman/hdfs-native"
readme = "README.md"
keywords = [
    "hadoop",
    "hdfs",
]
license = "Apache-2.0"
repository = "https://github.com/Kimahriman/hdfs-native"
resolver = "2"

[features]
benchmark = [
    "fs-hdfs3",
    "which",
]
generate-protobuf = [
    "prost-build",
    "protobuf-src",
]
integration-test = ["which"]

[lib]
name = "hdfs_native"
path = "src/lib.rs"

[[example]]
name = "simple"
path = "examples/simple.rs"

[[test]]
name = "test_ec"
path = "tests/test_ec.rs"

[[test]]
name = "test_integration"
path = "tests/test_integration.rs"

[[test]]
name = "test_read"
path = "tests/test_read.rs"

[[test]]
name = "test_read_resiliency"
path = "tests/test_read_resiliency.rs"

[[test]]
name = "test_viewfs"
path = "tests/test_viewfs.rs"

[[test]]
name = "test_write"
path = "tests/test_write.rs"

[[test]]
name = "test_write_resiliency"
path = "tests/test_write_resiliency.rs"

[[bench]]
name = "ec"
path = "benches/ec.rs"
harness = false

[[bench]]
name = "io"
path = "benches/io.rs"
harness = false

[[bench]]
name = "rpc"
path = "benches/rpc.rs"
harness = false

[dependencies.aes]
version = "0.8"

[dependencies.base64]
version = "0.22"

[dependencies.bitflags]
version = "2"

[dependencies.bumpalo]
version = "3.19.0"

[dependencies.bytes]
version = "1"

[dependencies.cbc]
version = "0.1"

[dependencies.chrono]
version = "0.4"

[dependencies.cipher]
version = "0.4"

[dependencies.crc]
version = "3.3"

[dependencies.ctr]
version = "0.9"

[dependencies.des]
version = "0.8"

[dependencies.dns-lookup]
version = "3"

[dependencies.futures]
version = "0.3"

[dependencies.g2p]
version = "1"

[dependencies.hex]
version = "0.4"

[dependencies.hmac]
version = "0.12"

[dependencies.libc]
version = "0.2"

[dependencies.libloading]
version = "0.9"

[dependencies.log]
version = "0.4"

[dependencies.md-5]
version = "0.10"

[dependencies.num-traits]
version = "0.2"

[dependencies.once_cell]
version = "1"

[dependencies.prost]
version = "0.14"

[dependencies.prost-types]
version = "0.14"

[dependencies.rand]
version = "0.9"

[dependencies.regex]
version = "1"

[dependencies.roxmltree]
version = "0.21.1"

[dependencies.socket2]
version = "0.6"

[dependencies.thiserror]
version = "2"

[dependencies.tokio]
version = "1"
features = [
    "rt",
    "rt-multi-thread",
    "net",
    "io-util",
    "macros",
    "sync",
    "time",
]

[dependencies.url]
version = "2"

[dependencies.uuid]
version = "1"
features = ["v4"]

[dependencies.which]
version = "8"
optional = true

[dependencies.whoami]
version = "1"

[dev-dependencies.criterion]
version = "0.7"
features = [
    "async_tokio",
    "async_futures",
]

[dev-dependencies.env_logger]
version = "0.11"

[dev-dependencies.indoc]
version = "2"

[dev-dependencies.serial_test]
version = "3"

[dev-dependencies.tempfile]
version = "3"

[dev-dependencies.which]
version = "8"

[build-dependencies.prost-build]
version = "0.14"
optional = true

[build-dependencies.protobuf-src]
version = "2"
optional = true

[target."cfg(unix)".dependencies.fs-hdfs3]
version = "0.1.12"
optional = true