p9cpu/crates/libp9cpu/Cargo.toml
Changyuan Lyu 4bbdc2e659 p9cpu: server: define a server trait
Signed-off-by: Changyuan Lyu <changyuanl@google.com>
2023-05-26 16:10:07 -07:00

25 lines
553 B
TOML

[package]
name = "libp9cpu"
version = "0.1.0"
edition = "2021"
[lib]
name = "libp9cpu"
path = "src/lib.rs"
[dependencies]
futures = "0.3.25"
async-trait = "0.1.61"
prost = "0.11.5"
tonic = "0.8.3"
tokio = { version = "1", features = ["macros", "rt-multi-thread","process","io-std", "fs", "io-util"] }
tokio-vsock = { version = "0.4", features = ["tonic-conn"] }
libc = "0.2.139"
thiserror = "1"
uuid = { version = "1", features = ["v4", "fast-rng", "macro-diagnostics"] }
log = "0.4"
[build-dependencies]
tonic-build = "0.8.4"
prost-build = "0.11.5"