-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: switch client from openssl to rustls (#1365)
<!-- Please make sure there is an issue that this PR is correlated to. --> ## Changes <!-- If there are frontend changes, please include screenshots. -->
- Loading branch information
1 parent
6a8189a
commit b1d1156
Showing
6 changed files
with
92 additions
and
110 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,14 @@ | ||
# Rivet Client | ||
|
||
## Projects | ||
|
||
- **manager** The binary responsible for talking to the Rivet Server. This will spawn a runner based on the flavor (isolate or container). | ||
- **isolate-v8-runner** Runs actors using V8 isolates. | ||
- **container-runner** Runs actors as containers. | ||
- **runner-protocol** Shared types for the runner's protocol. | ||
- **echo** Used as a test binary for testing pegboard-manager. | ||
|
||
## rustls and OpenSSL | ||
|
||
We opt to use rustls instead of OpenSSL in all client binaries in the interest of portability. | ||
|
Oops, something went wrong.