[package]
edition = "2024"
name = "libobs-bootstrapper"
version = "0.3.1"
authors = ["Hendrik Lind <hendrik@sshcrack.me>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Downloads OBS binaries at runtime and bootstraps libobs"
documentation = "https://libobs-rs.github.io/libobs-rs/libobs_bootstrapper/"
readme = "README.md"
keywords = [
"obs",
"libobs",
"video",
"bootstrapper",
]
categories = [
"multimedia::video",
"multimedia::audio",
"multimedia",
"multimedia::encoding",
]
license = "GPL-3.0"
repository = "https://github.com/libobs-rs/libobs-rs"
resolver = "2"
[package.metadata.docs.rs]
targets = ["x86_64-pc-windows-msvc"]
[features]
__ci = []
__mock_github_responses = ["dep:serde_json"]
default = ["install_dummy_dll"]
generate_bindings = ["libobs/generate_bindings"]
install_dummy_dll = []
[lib]
name = "libobs_bootstrapper"
path = "src/lib.rs"
[[test]]
name = "test_bootstrap"
path = "tests/test_bootstrap.rs"
[dependencies.async-stream]
version = "0.3.5"
[dependencies.futures-core]
version = "0.3"
[dependencies.futures-util]
version = "0.3"
[dependencies.hex]
version = "0.4"
[dependencies.lazy_static]
version = "1"
[dependencies.libloading]
version = "0.9"
[dependencies.libobs]
version = "5"
[dependencies.log]
version = "0.4"
[dependencies.reqwest]
version = "0.13"
features = [
"stream",
"json",
]
[dependencies.semver]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
optional = true
[dependencies.sevenz-rust]
version = "0.6"
[dependencies.sha2]
version = "0.10"
[dependencies.tokio]
version = "1.49"
features = [
"process",
"macros",
]
default-features = false
[dependencies.uuid]
version = "1"
features = ["v4"]
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(coverage,coverage_nightly)"]