lws_client/Cargo.toml
ekko.bao acece94fae 1. 新增支持对于驱动器显示名称的获取,通过显示名称的匹配更加直观
2. 优化rpc pool的使用。
3. 新增保存配置的功能给其他的组件使用
2025-03-31 10:46:21 +08:00

33 lines
683 B
TOML

[package]
name = "sstar_lws_vfs"
version = "0.1.0"
edition = "2021"
[[bin]] # Bin to run the HelloWorld gRPC client
name = "lws_vfs_client"
path = "src/client.rs"
# [[bin]]
# name = "sscp"
# path = "src/sscp.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"
nix = { version = "0.29.0", features = ["process", "feature"]}
signal-hook = "0.3.17"
parking_lot = "0.12"
dirs = "4.0"
[build-dependencies]
tonic-build = "0.11"