1 Commits
1.2.0 ... main

Author SHA1 Message Date
dc62392889 1.2.0 release 2024-07-09 14:55:24 +02:00
2 changed files with 50 additions and 0 deletions

49
Cargo.lock generated
View File

@@ -83,6 +83,7 @@ dependencies = [
"ffmpeg-next", "ffmpeg-next",
"image", "image",
"nokhwa", "nokhwa",
"openssl",
"video-rs", "video-rs",
] ]
@@ -1046,6 +1047,54 @@ version = "1.19.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
[[package]]
name = "openssl"
version = "0.10.64"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "95a0481286a310808298130d22dd1fef0fa571e05a8f44ec801801e84b216b1f"
dependencies = [
"bitflags 2.6.0",
"cfg-if 1.0.0",
"foreign-types",
"libc",
"once_cell",
"openssl-macros",
"openssl-sys",
]
[[package]]
name = "openssl-macros"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "openssl-src"
version = "300.3.1+3.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7259953d42a81bf137fbbd73bd30a8e1914d6dce43c2b90ed575783a22608b91"
dependencies = [
"cc",
]
[[package]]
name = "openssl-sys"
version = "0.9.102"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c597637d56fbc83893a35eb0dd04b2b8e7a50c91e64e9493e398b5df4fb45fa2"
dependencies = [
"cc",
"libc",
"openssl-src",
"pkg-config",
"vcpkg",
]
[[package]] [[package]]
name = "paste" name = "paste"
version = "1.0.15" version = "1.0.15"

View File

@@ -12,3 +12,4 @@ ffmpeg-next = "7.0.2"
image = "0.24.9" image = "0.24.9"
nokhwa = { path = "../../Software/nokhwa", version = "0.10.4", features = ["input-native"] } nokhwa = { path = "../../Software/nokhwa", version = "0.10.4", features = ["input-native"] }
video-rs = "0.8.1" video-rs = "0.8.1"
openssl = { version = "0.10.35", features = ["vendored"] }