Merge branch 'main' into v5-api

v5-api
Dominik Nakamura 3 years ago
commit 942c702483
No known key found for this signature in database
GPG Key ID: E4C6A749B2491910

@ -3,6 +3,7 @@ name = "obws"
version = "0.8.0"
authors = ["Dominik Nakamura <dnaka91@gmail.com>"]
edition = "2018"
resolver = "2"
license = "MIT"
readme = "README.md"
description = "The obws (obvious) remote control library for OBS."
@ -10,7 +11,7 @@ homepage = "https://github.com/dnaka91/obws"
repository = "https://github.com/dnaka91/obws"
categories = ["api-bindings", "web-programming"]
keywords = ["async", "obs", "obs-websocket", "remote-control", "tokio"]
resolver = "2"
include = ["examples/**/*", "tests/**/*", "src/**/*", "LICENSE", "README.md", "CHANGELOG.md"]
[package.metadata.docs.rs]
features = ["events", "tls"]

@ -1,3 +1,5 @@
set dotenv-load := true
nightly := "nightly-2021-06-01"
# list available recipes
@ -7,7 +9,7 @@ default:
# run integration tests with coverage
coverage:
cargo install grcov
rustup component add --toolchain {{nightly}} llvm-tools-preview
rustup toolchain install {{nightly}} --component llvm-tools-preview
rm -rf *.profraw ./target/debug/coverage

Loading…
Cancel
Save