lws_client/Cargo.toml
BeGild 24573524a6 添加初始提交
1. 编译已经通过
2. 添加好了rpc客户端的基本实现
3. 添加好了fuser的架子,内容等待实现
2024-07-16 07:57:07 +08:00

20 lines
403 B
TOML

[package]
name = "lws_client"
version = "0.1.0"
edition = "2021"
[[bin]] # Bin to run the HelloWorld gRPC client
name = "lws-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"
fuser = "0.14.0"
[build-dependencies]
tonic-build = "0.11"