p9cpu/crates/9p/Cargo.toml
Changyuan Lyu 3ea9466e09 p9cpu: make unpfs a library
Signed-off-by: Changyuan Lyu <changyuanl@google.com>
2023-05-26 16:10:08 -07:00

35 lines
964 B
TOML

[package]
name = "rust-9p"
version = "0.0.1"
edition = "2018"
authors = ["Ryo Munakata (pfpacket) <afpacket@gmail.com>"]
description = "Filesystems library using 9P2000.L protocol, an extended variant of 9P from Plan 9"
documentation = "https://pfpacket.github.io/rust-9p/rs9p/index.html"
repository = "https://github.com/pfpacket/rust-9p"
readme = "README.md"
keywords = ["9p", "Plan9", "v9fs", "filesystem", "network"]
categories = ["filesystem", "network-programming"]
license-file = "LICENSE"
[badges]
travis-ci = { repository = "pfpacket/rust-9p", branch = "master" }
[lib]
name = "rs9p"
crate-type = ["rlib"]
[dependencies]
log = "^0.4"
num-traits = "^0.2"
nix = "^0"
byteorder = "^1.4"
bitflags = "^1.3"
enum_primitive = "*"
async-trait = "^0.1"
tokio = { version = "^1.28", features = ["full"] }
tokio-util = { version = "^0.6", features = ["codec"] }
tokio-stream = { version = "^0.1", features = ["fs"] }
bytes = "^1"
futures = "^0.3"
filetime = "^0"