lws_client/Cargo.toml
BeGild 1d49f19301 1. 修改配置的解析方式,使用建立rpc链接的时候使用一个get_config的请求同步,这样不用维护windows和linux两个配置文件
2. 修改命令行参数使其更加符合CLI交互,使用clap库实现。

遗留问题:
权限全是0777。需要改一下
2024-08-06 08:38:35 +08:00

25 lines
510 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 = { path = "third_party/fuse-mt" }
libc = "0.2"
hashbrown = "0.9.0"
log = "0.4"
env_logger = "0.8"
clap = "3.0"
[build-dependencies]
tonic-build = "0.11"