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 dedb29e commit e1a527eCopy full SHA for e1a527e
pqcrypto-internals/Cargo.toml
@@ -11,6 +11,7 @@ links = "pqcrypto_internals"
11
12
[build-dependencies]
13
cc = { version = "1.0", features = ["parallel"] }
14
+dunce = "1.0.2"
15
16
[dependencies]
17
getrandom = "0.2"
pqcrypto-internals/build.rs
@@ -1,10 +1,11 @@
1
extern crate cc;
2
+extern crate dunce;
3
4
use std::env;
5
use std::path::Path;
6
7
fn main() {
- let includepath = Path::new("include").canonicalize().unwrap();
8
+ let includepath = dunce::canonicalize(Path::new("include")).unwrap();
9
println!("cargo:includepath={}", includepath.to_str().unwrap());
10
let cfiledir = Path::new("cfiles");
0 commit comments