Skip to content

Commit

Permalink
Fix some typo about flag (#845)
Browse files Browse the repository at this point in the history
  • Loading branch information
JinVei authored Mar 6, 2024
1 parent 963557c commit 7967c6c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Rustls has support for plugging in various crypto providers to meet various need
| Name | How To Enable |
|-----------------------------------------------|------------------------------------------------|
| [ring](https://github.com/briansmith/ring/) | Default (or `--features tls-ring`) |
| [boring](https://github.com/cloudflare/boring) | `--features tls-boring --no-default-features`) |
| [boring](https://github.com/cloudflare/boring) | `--features tls-boring --no-default-features` |

In all options, only TLS 1.3 with cipher suites `TLS13_AES_256_GCM_SHA384` and `TLS13_AES_128_GCM_SHA256` is used.

Expand Down
2 changes: 1 addition & 1 deletion src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ fn mock_secret_manager() -> Arc<SecretManager> {

#[cfg(not(feature = "testing"))]
fn mock_secret_manager() -> Arc<SecretManager> {
unimplemented!("fake_ca requires --feature testing")
unimplemented!("fake_ca requires --features testing")
}

#[cfg(not(target_os = "linux"))]
Expand Down

0 comments on commit 7967c6c

Please sign in to comment.