• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1[package]
2name = "p9"
3version = "0.2.3"
4authors = ["The ChromiumOS Authors"]
5edition = "2021"
6license = "BSD-3-Clause"
7description = "Server implementation of the 9p file system protocol"
8repository = "https://github.com/google/rust-p9"
9
10[target.'cfg(unix)'.dependencies]
11libc = "0.2"
12serde = { version = "1.0", features = ["derive"] }
13p9_wire_format_derive = { path = "p9_wire_format_derive", version = "0.2.3" }
14
15[features]
16trace = []
17
18[workspace]
19members = ["p9_wire_format_derive"]
20