update: github workflow

This commit is contained in:
zeke
2024-11-26 14:43:21 +08:00
parent dbba69f044
commit b82dd507e0
2 changed files with 12 additions and 0 deletions

11
rs-capi/Cargo.lock generated
View File

@@ -919,6 +919,15 @@ version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
[[package]]
name = "openssl-src"
version = "300.4.1+3.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "faa4eac4138c62414b5622d1b31c5c304f34b406b013c079c2bbc652fdd6678c"
dependencies = [
"cc",
]
[[package]]
name = "openssl-sys"
version = "0.9.104"
@@ -927,6 +936,7 @@ checksum = "45abf306cbf99debc8195b66b7346498d7b10c210de50418b5ccd7ceba08c741"
dependencies = [
"cc",
"libc",
"openssl-src",
"pkg-config",
"vcpkg",
]
@@ -1094,6 +1104,7 @@ dependencies = [
"hex",
"http 1.1.0",
"hyper 1.5.1",
"openssl",
"regex",
"reqwest",
"serde",

View File

@@ -21,3 +21,4 @@ tracing-subscriber = "0.3"
hex = "0.4"
hyper = "1.5.1"
http = "1.1.0"
openssl = { version = "0.10", features = ["vendored"] }