Skip to content

Commit

Permalink
Replace path dependencies with git
Browse files Browse the repository at this point in the history
  • Loading branch information
Jakub Hlusička committed Apr 17, 2020
1 parent 2295102 commit 8f90b5d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 2 additions & 0 deletions Cargo.lock

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

8 changes: 5 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,13 @@ crate-type = ["cdylib"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
obs-wrapper = { path = "../rust-obs-plugins" }
obs-sys = { path = "../rust-obs-plugins/obs-sys" }
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", branch = "master" }
ammolite-math = { git = "https://github.com/metaview-org/ammolite" }
lazy_static = "1.4"
smallvec = "1.3"
fourier = "0.1"
Expand Down

0 comments on commit 8f90b5d

Please sign in to comment.