-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added DEP_SODIUM_INCLUDE & DEP_SODIUM_LIB cargo env var
Add README to libsodium-sys Added testcrate for libsodium Fix CI to test all crates Add windows support Added RUST_BACKTRACE to appveyor Use sodium.h from the source_dir
- Loading branch information
1 parent
46cdc31
commit 39df6b8
Showing
11 changed files
with
279 additions
and
140 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
#### IDEs #### | ||
### CLion ### | ||
# CMake | ||
cmake-build-debug/ | ||
|
||
### IntelliJ ### | ||
.idea | ||
*.iws | ||
*.iml | ||
*.ipr | ||
|
||
### Vim ### | ||
.sw[a-p] | ||
.*.sw[a-p] | ||
Session.vim | ||
.netrwhist | ||
*~ | ||
|
||
### Visual Studio Code ### | ||
.vscode/* | ||
!.vscode/settings.json | ||
!.vscode/tasks.json | ||
!.vscode/launch.json | ||
!.vscode/extensions.json | ||
.history | ||
|
||
#### Languages #### | ||
### Rust ### | ||
/target/ | ||
Cargo.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
> libsodium-sys | ||
# Build output ENV Variables | ||
This is the possible build metadata for the crate. | ||
* `DEP_SODIUM_INCLUDE` is the directory which contains the `sodium.h` header. | ||
It is only available if the header was installed and `SODIUM_LIB_DIR` was not set. | ||
* `DEP_SODIUM_LIB` is the directory containing the compiled library. | ||
It is only available if `SODIUM_LIB_DIR` was not set. | ||
|
||
See [`link build metadata`] for more information about build metadata. | ||
|
||
[`link build metadata`]: https://doc.rust-lang.org/cargo/reference/build-scripts.html#the-links-manifest-key |
Oops, something went wrong.