This repository has been archived by the owner on Apr 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Automatically redirect to the API docs entry page. (#10)
- Loading branch information
Showing
2 changed files
with
24 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,14 @@ | ||
/target | ||
# The `target` directory is generated by Cargo. | ||
# It will contain mostly compiled files and executables. | ||
target/* | ||
|
||
# But the API documentation eventually gets published, so we want to | ||
# make sure these files are also included in commits for downstream | ||
# services to consume, and these are by default output to `target/doc`. | ||
!target/doc | ||
target/doc/* | ||
!target/doc/index.html | ||
|
||
# Other ignores go here. | ||
node_modules | ||
/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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<meta http-equiv="refresh" content="0; url=x25519_chacha20poly1305/" /> | ||
<title>Redirecting….</title> | ||
</head> | ||
<body> | ||
<p>Redirecting to this repository's <a href="x25519_chacha20poly1305/">API documentation</a>….</p> | ||
</body> | ||
</html> |