zerofs-client 0.1.0

Async, path-based client library for ZeroFS over 9P
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"
rust-version = "1.85"
name = "zerofs-client"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Async, path-based client library for ZeroFS over 9P"
homepage = "https://www.zerofs.net"
documentation = "https://docs.rs/zerofs-client"
readme = "README.md"
keywords = [
    "filesystem",
    "9p",
    "client",
    "s3",
    "zerofs",
]
categories = [
    "filesystem",
    "network-programming",
]
license = "AGPL-3.0"
repository = "https://github.com/Barre/ZeroFS"

[features]
default = [
    "tokio-io",
    "stream",
    "serde",
]
serde = ["dep:serde"]
stream = ["dep:futures-core"]
tokio-io = ["tokio/io-util"]

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

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

[dependencies.bytes]
version = "1"

[dependencies.futures-core]
version = "0.3"
optional = true

[dependencies.libc]
version = "0.2"

[dependencies.ninep-client]
version = "0.1.0"

[dependencies.ninep-proto]
version = "0.1.0"

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

[dependencies.tokio]
version = "1.52"
features = [
    "rt",
    "net",
    "sync",
    "time",
]

[dev-dependencies.futures]
version = "0.3"

[dev-dependencies.tokio]
version = "1.52"
features = [
    "rt-multi-thread",
    "macros",
]