Add manual pages (#88)

This commit is contained in:
Moritz Poldrack 2023-06-14 21:14:23 -07:00 committed by Ulyssa
parent 2a573b6056
commit 0ddefcd7b3
No known key found for this signature in database
GPG key ID: 1B3965A3D18B9B64
7 changed files with 236 additions and 1 deletions

40
Cargo.lock generated
View file

@ -867,6 +867,12 @@ version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "850878694b7933ca4c9569d30a34b55031b9b139ee1fc7b94a527c4ef960d690"
[[package]]
name = "deunicode"
version = "1.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8c1bba4f227a4a53d12b653f50ca7bf10c9119ae2aba56aff9e0338b5c98f36a"
[[package]]
name = "digest"
version = "0.9.0"
@ -1298,6 +1304,15 @@ dependencies = [
"windows 0.43.0",
]
[[package]]
name = "getopts"
version = "0.2.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5"
dependencies = [
"unicode-width",
]
[[package]]
name = "getrandom"
version = "0.1.16"
@ -1511,6 +1526,7 @@ dependencies = [
"html5ever",
"image",
"lazy_static 1.4.0",
"mandown",
"markup5ever_rcdom",
"matrix-sdk",
"mime",
@ -1830,6 +1846,16 @@ dependencies = [
"libc",
]
[[package]]
name = "mandown"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "12243a468e9660b178540f73c43bdc544d64bd3cde749de0bd851e0dbacfd683"
dependencies = [
"deunicode 1.3.3",
"pulldown-cmark",
]
[[package]]
name = "maplit"
version = "1.0.2"
@ -2599,6 +2625,18 @@ dependencies = [
"syn 1.0.109",
]
[[package]]
name = "pulldown-cmark"
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77a1a2f1f0a7ecff9c31abbe177637be0e97a0aef46cf8738ece09327985d998"
dependencies = [
"bitflags 1.3.2",
"getopts",
"memchr",
"unicase",
]
[[package]]
name = "quick-xml"
version = "0.28.1"
@ -3367,7 +3405,7 @@ version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b3bc762e6a4b6c6fcaade73e77f9ebc6991b676f88bb2358bddb56560f073373"
dependencies = [
"deunicode",
"deunicode 0.4.3",
]
[[package]]