mirror of
https://github.com/nicoburns/blessed-rs
synced 2024-11-23 04:03:04 +00:00
Add standard to lib descriptions
This commit is contained in:
parent
f332651345
commit
2614d02f43
1 changed files with 3 additions and 3 deletions
|
@ -14,7 +14,7 @@
|
|||
"name": "Random numbers",
|
||||
"crates": [{
|
||||
"name": "rand",
|
||||
"notes": "De facto random number generation library split out from the standard library"
|
||||
"notes": "De facto standard random number generation library split out from the standard library"
|
||||
}]
|
||||
},
|
||||
{
|
||||
|
@ -28,14 +28,14 @@
|
|||
"name": "Serialization (JSON, YAML, etc)",
|
||||
"crates": [{
|
||||
"name": "serde",
|
||||
"notes": "De facto serialization library. Use in conjunction with sub-crates like serde_json for the specific format that you are using."
|
||||
"notes": "De facto standard serialization library. Use in conjunction with sub-crates like serde_json for the specific format that you are using."
|
||||
}]
|
||||
},
|
||||
{
|
||||
"name": "Regular Expressions",
|
||||
"crates": [{
|
||||
"name": "regex",
|
||||
"notes": "De facto regex library. Very fast, but does not support fancier features such as backtracking."
|
||||
"notes": "De facto standard regex library. Very fast, but does not support fancier features such as backtracking."
|
||||
},
|
||||
{
|
||||
"name": "fancy_regex",
|
||||
|
|
Loading…
Reference in a new issue