lws_client/Cargo.toml
BeGild 80c7a14ff2 1. 解决访问慢的问题。增加缓存机制,默认10秒。提高访问速度。
2. 测试新建文件,修改文件,删除文件等操作均可。但是vim编辑存在swap文件访问时序的问题。会先创建swap文件然后又删除导致报错,但是不影响文件编辑。
3. 修改日志库,使用log代替println宏。
2024-08-04 17:57:26 +08:00

24 lines
497 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"
[build-dependencies]
tonic-build = "0.11"