-
-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Also updated feature descriptions in the library docs, and the readme. Updated the cross-platform doc builder script to know about the new keystore.
- Loading branch information
1 parent
658174e
commit f59afd5
Showing
4 changed files
with
75 additions
and
47 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,11 @@ | ||
#!/bin/bash | ||
cargo doc --no-deps --features=linux-native --target aarch64-unknown-linux-musl $OPEN_DOCS | ||
cargo doc --no-deps --features=windows-native --target aarch64-pc-windows-msvc $OPEN_DOCS | ||
cargo doc --no-deps --features=apple-native --target aarch64-apple-darwin $OPEN_DOCS | ||
cargo doc --no-deps --features=apple-native --target aarch64-apple-ios $OPEN_DOCS | ||
if [[ "$OSTYPE" == "linux"* ]]; then | ||
cargo doc --no-deps --features=linux-native-sync-persistent $OPEN_DOCS | ||
cargo doc --no-deps --features=sync-secret-service $OPEN_DOCS | ||
cargo doc --no-deps --features=linux-native $OPEN_DOCS | ||
elif [[ "$OSTYPE" == "darwin"* ]]; then | ||
cargo doc --no-deps --features=linux-native --target aarch64-unknown-linux-musl $OPEN_DOCS | ||
cargo doc --no-deps --features=windows-native --target aarch64-pc-windows-msvc $OPEN_DOCS | ||
cargo doc --no-deps --features=apple-native --target aarch64-apple-darwin $OPEN_DOCS | ||
cargo doc --no-deps --features=apple-native --target aarch64-apple-ios $OPEN_DOCS | ||
fi |
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