mirror of
https://github.com/nicoburns/blessed-rs
synced 2024-11-10 06:14:15 +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",
|
"name": "Random numbers",
|
||||||
"crates": [{
|
"crates": [{
|
||||||
"name": "rand",
|
"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)",
|
"name": "Serialization (JSON, YAML, etc)",
|
||||||
"crates": [{
|
"crates": [{
|
||||||
"name": "serde",
|
"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",
|
"name": "Regular Expressions",
|
||||||
"crates": [{
|
"crates": [{
|
||||||
"name": "regex",
|
"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",
|
"name": "fancy_regex",
|
||||||
|
|
Loading…
Reference in a new issue