Skip to content

Commit

Permalink
Remove dependency on obs_sys
Browse files Browse the repository at this point in the history
  • Loading branch information
Limeth committed Apr 17, 2020
1 parent 4cf72d0 commit ed2c6f0
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 14 deletions.
17 changes: 8 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 0 additions & 2 deletions Cargo.toml
Expand Up @@ -12,9 +12,7 @@ crate-type = ["cdylib"]

[dependencies]
obs-wrapper = { git = "https://github.com/Limeth/rust-obs-plugins" }
obs-sys = { git = "https://github.com/Limeth/rust-obs-plugins" }
# obs-wrapper = { path = "../rust-obs-plugins" }
# obs-sys = { path = "../rust-obs-plugins/obs-sys" }
regex = "1"
anyhow = "1.0"
ammolite-math = { git = "https://github.com/metaview-org/ammolite" }
Expand Down
2 changes: 1 addition & 1 deletion src/effect/effect_param.rs
Expand Up @@ -8,7 +8,7 @@ use std::fs::File;
use std::ffi::{CStr, CString};
use std::io::Read;
use ammolite_math::*;
use obs_sys::{
use obs_wrapper::obs_sys::{
MAX_AUDIO_MIXES,
MAX_AUDIO_CHANNELS,
};
Expand Down
2 changes: 1 addition & 1 deletion src/effect/loaded_value.rs
Expand Up @@ -8,7 +8,7 @@ use std::fs::File;
use std::ffi::{CStr, CString};
use std::io::Read;
use ammolite_math::*;
use obs_sys::{
use obs_wrapper::obs_sys::{
MAX_AUDIO_MIXES,
MAX_AUDIO_CHANNELS,
};
Expand Down
2 changes: 1 addition & 1 deletion src/effect/mod.rs
Expand Up @@ -8,7 +8,7 @@ use std::fs::File;
use std::ffi::{CStr, CString};
use std::io::Read;
use ammolite_math::*;
use obs_sys::{
use obs_wrapper::obs_sys::{
MAX_AUDIO_MIXES,
MAX_AUDIO_CHANNELS,
};
Expand Down

0 comments on commit ed2c6f0

Please sign in to comment.