this repo has no description
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

Revert "๐Ÿ’š Try putting nih_plug in dev deps to publish on crates.io"

This reverts commit 9cadb0ca7b1374b2862b2ce716c5d6e69af9ebfc.

+4 -4
+4 -4
Cargo.toml
··· 22 22 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 23 23 24 24 [features] 25 - vst = ["dep:env_logger", "dep:ureq"] 25 + vst = ["dep:env_logger", "dep:nih_plug", "dep:ureq"] 26 26 web = ["dep:wasm-bindgen", "dep:web-sys"] 27 27 mp4 = ["dep:env_logger", "dep:ffmpeg-next", "dep:video-rs"] 28 28 29 29 [dependencies] 30 + nih_plug = { git = "https://github.com/robbert-vdh/nih-plug.git", features = [ 31 + "assert_process_allocs", 32 + ], optional = true, version = "0.0.0" } 30 33 anyhow = "1.0.81" 31 34 chrono = "0.4.23" 32 35 docopt = "1.1.1" ··· 75 78 76 79 [dev-dependencies] 77 80 rust-analyzer = "0.0.1" 78 - nih_plug = { git = "https://github.com/robbert-vdh/nih-plug.git", features = [ 79 - "assert_process_allocs", 80 - ]}