lws_client/Cargo.toml
BeGild 022a31a489 初版完成等待和服务器调试
1. 完成虚拟root节点的使用
2. 完成基础接口的实现和转发

等待完善自动获取登录IP的功能,config暂时需要配置端口
2024-07-23 08:52:07 +08:00

21 lines
421 B
TOML

[package]
name = "lws_client"
version = "0.1.0"
edition = "2021"
[[bin]] # Bin to run the HelloWorld gRPC client
name = "lws_vfs_client"
path = "src/client.rs"
[dependencies]
tonic = "0.11"
prost = "0.12"
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
fuse_mt = "0.6.1"
libc = "0.2"
[build-dependencies]
tonic-build = "0.11"