-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
50 lines (43 loc) · 992 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[package]
name = "obs-controller"
version = "0.1.0"
authors = ["Beezig Team <[email protected]>"]
edition = "2018"
description = "An OBS plugin to control recording status over HTTP."
readme = "README.md"
repository = "https://gitlab.com/Beezig/obs-controller"
license = "GPL-3.0-or-later"
publish = false
[dependencies]
# Web server
tiny_http = "0.6"
lazy_static = "1.4.0"
serde_json = "1.0"
# Encryption & App verification
ed25519-dalek = "1.0.1"
rand_core = "0.5.1"
serde = {version = "1.0", features = ["derive"]}
bincode = "1.3.1"
sha2 = "0.9.2"
byteorder = "1.3.4"
uuid = "0.8.1"
base64 = "0.13.0"
x25519-dalek = "1.1.0"
ring = {version = "0.17.0-alpha.7", default-features = false, features = ["std"]}
dirs = "3.0.1"
# UI
cpp = "0.5"
[build-dependencies]
bindgen = "0.55.1"
cpp_build = "0.5"
[features]
default = ["verification"]
macos = []
verification = []
[lib]
name = "obs_controller"
crate-type = ["cdylib"]
[profile.release]
# Size optimizations
opt-level = "z"
lto = true