- tcp_ip 从 git 依赖切换为 crates.io 0.2(IpStackConfig 改用 builder) - 公共依赖收拢到 workspace.dependencies 统一版本 - 移除 release profile 的 panic=abort(避免 vnt-jni 中止宿主 JVM) - vnt-jni 升级 edition 2024(no_mangle 改为 unsafe(no_mangle)) - vnt-ipc 显式声明 tokio features - 适配 rand 0.10:random_range 移至 RngExt,choose_multiple 改名 sample - 修复 clippy 警告(type_complexity/collapsible_if/ptr_arg)
21 lines
404 B
TOML
21 lines
404 B
TOML
[package]
|
|
name = "vnt-ipc"
|
|
version = "2.0.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
|
|
vnt-core.workspace = true
|
|
anyhow.workspace = true
|
|
futures.workspace = true
|
|
prost.workspace = true
|
|
tokio = { workspace = true, features = ["rt", "net", "io-util", "time"] }
|
|
tokio-util.workspace = true
|
|
log.workspace = true
|
|
time.workspace = true
|
|
console = "0.16.2"
|
|
cli-table = "0.5.0"
|
|
|
|
[build-dependencies]
|
|
prost-build = "0.14"
|