File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -440,7 +440,7 @@ build = "build.rs"
440
440
[dependencies ]
441
441
libssh2-sys = { git = " https://github.com/alexcrichton/ssh2-rs" }
442
442
443
- [target .x86_64-unknown-linux-gnu .dependencies ]
443
+ [target .'cfg(unix)' .dependencies ]
444
444
openssl-sys = { git = " https://github.com/alexcrichton/openssl-sys" }
445
445
446
446
# ...
@@ -452,7 +452,7 @@ crate (`libgit2-sys`) links to the `git2` native library.
452
452
453
453
Here we also see the unconditional dependency on ` libssh2 ` via the
454
454
` libssh2-sys ` crate, as well as a platform-specific dependency on ` openssl-sys `
455
- for unix (other variants elided for now). It may seem a little counterintuitive
455
+ for \* nix (other variants elided for now). It may seem a little counterintuitive
456
456
to express * C dependencies* in the * Cargo manifest* , but this is actually using
457
457
one of Cargo’s conventions in this space.
458
458
You can’t perform that action at this time.
0 commit comments