wls_vfs/Cargo.toml

30 lines
642 B
TOML
Raw Normal View History

[package]
name = "lws_vfs"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]] # Bin to run the HelloWorld gRPC server
name = "lws_vfs-server"
path = "src/server.rs"
[dependencies]
tonic = "0.11"
prost = "0.12"
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
winapi = { version = "0.3", features = [
"fileapi",
"minwinbase",
"minwindef",
"timezoneapi",
"winnt",
] }
windows = "0.28"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
2024-07-23 08:51:09 +08:00
libc = "0.2"
[build-dependencies]
tonic-build = "0.11"