We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1bf2e85 commit 0c46b35Copy full SHA for 0c46b35
src/minion-ffi/build.rs
@@ -1,6 +1,6 @@
1
fn main() {
2
let crate_root = std::env::var("CARGO_MANIFEST_DIR").unwrap();
3
- let out_file = format!("../../target/minion-ffi.h"); //TODO better path
+ let out_file = "../../target/minion-ffi.h".to_string(); //TODO better path
4
cbindgen::generate(crate_root)
5
.expect("was unable to generate bindings")
6
.write_to_file(out_file);
0 commit comments