feat: fix core on CentOS 6.9

This commit is contained in:
2024-11-20 02:07:22 +08:00
parent b29374ce1d
commit e2f5bc52a2
2 changed files with 3 additions and 1 deletions

1
Cargo.lock generated
View File

@@ -844,6 +844,7 @@ version = "0.30.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2e99fb7a497b1e3339bc746195567ed8d3e24945ecd636e3619d20b9de9e9149"
dependencies = [
"cc",
"pkg-config",
"vcpkg",
]

View File

@@ -25,7 +25,8 @@ seckey = "0.12"
rust_util = { version = "0.6", features = ["use_clap"] }
tokio = { version = "1.37", features = ["full"] }
hyper = { version = "0.14", features = ["client", "server", "tcp", "http1", "http2"] }
rusqlite = "0.32"
# use bundled fix musl build core dump on CentOS 6.9
rusqlite = { version = "0.32", features = ["bundled"] }
yubico_manager = { version = "0.9", optional = true }
rpassword = "7.3"
rand = "0.8"