mirror of
https://github.com/nicoburns/blessed-rs
synced 2024-11-22 11:43:09 +00:00
fix incorrect crate names (#54)
This commit is contained in:
parent
ce49bedcff
commit
3af388ceb6
1 changed files with 3 additions and 3 deletions
|
@ -168,7 +168,7 @@
|
|||
"notes": "De facto standard regex library. Very fast, but does not support fancier features such as backtracking."
|
||||
},
|
||||
{
|
||||
"name": "fancy_regex",
|
||||
"name": "fancy-regex",
|
||||
"notes": "Use if need features such as backtracking which regex doesn't support"
|
||||
}]
|
||||
},
|
||||
|
@ -497,7 +497,7 @@
|
|||
"notes": "For more formats, see <a href=\"https://github.com/RustCrypto/formats#rustcrypto-formats--\">Rust Crypto Formats</a>.",
|
||||
"recommendations": [
|
||||
{ "name": "der" },
|
||||
{ "name": "pem‑rfc7468" },
|
||||
{ "name": "pem-rfc7468" },
|
||||
{ "name": "pkcs8" },
|
||||
{ "name": "x509-cert" }
|
||||
]
|
||||
|
@ -933,7 +933,7 @@
|
|||
"notes": "See <a href=\"https://docs.rs/tokio/latest/tokio/sync/mpsc/index.html#communicating-between-sync-and-async-code\">communicating-between-sync-and-async-code</a> for notes on when to use async-specific channels vs general purpose channels.",
|
||||
"recommendations": [
|
||||
{
|
||||
"name": "crossbeam_channel",
|
||||
"name": "crossbeam-channel",
|
||||
"notes": "The absolute fastest channel implementation available. Implements Go-like 'select' feature."
|
||||
}, {
|
||||
"name": "flume",
|
||||
|
|
Loading…
Reference in a new issue