jetstream/third_party/rust-p9/Cargo.toml
2024-03-13 16:38:31 +00:00

21 lines
548 B
TOML

[package]
name = "p9"
version = "0.2.3"
authors = ["The ChromiumOS Authors"]
edition = "2021"
license = "BSD-3-Clause"
description = "Server implementation of the 9p file system protocol"
repository = "https://github.com/google/rust-p9"
[target.'cfg(unix)'.dependencies]
libc = "0.2"
serde = { version = "1.0", features = ["derive"] }
p9_wire_format_derive = { path = "../p9_wire_format_derive", version = "0.2.3" }
[features]
trace = []
[dependencies]
genfs = "0.1.4"
serde_bytes = "0.11.14"
tokio = { version = "1.29.0", features = ["full"] }