daoxide 0.2.0

High-performance Rust library for DAOS (Distributed Asynchronous Object Storage)
# 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"
rust-version = "1.85"
name = "daoxide"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance Rust library for DAOS (Distributed Asynchronous Object Storage)"
readme = "README.md"
keywords = [
    "daos",
    "storage",
    "high-performance",
]
categories = ["filesystem"]
license = "GPL-3.0-only"
repository = "https://github.com/ustc-leofs/daoxide"

[features]
async = ["dep:tokio"]
default = [
    "tracing",
    "serde",
]
mock = []
serde = [
    "dep:serde",
    "dep:serde_json",
]
tracing = ["dep:tracing"]

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

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

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

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

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

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

[dependencies.daos-rs]
version = "0.1.0"

[dependencies.serde]
version = "1"
features = ["derive"]
optional = true

[dependencies.serde_json]
version = "1"
optional = true

[dependencies.tokio]
version = "1"
features = [
    "rt-multi-thread",
    "sync",
    "time",
    "rt",
]
optional = true

[dependencies.tracing]
version = "0.1"
optional = true

[dev-dependencies.mockall]
version = "0.14"

[dev-dependencies.static_assertions]
version = "1.1"

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