diff options
author | Qrius <[email protected]> | 2024-09-26 00:11:06 +0200 |
---|---|---|
committer | Qrius <[email protected]> | 2024-09-26 00:11:06 +0200 |
commit | 33413e77ddaaca00d6b93b3aa4c917e4e3e2b4f0 (patch) | |
tree | 8771232ab6fb27c71a40afd46188ea47976e82cf | |
parent | 0c4d9e06105a32d22ca15d4e0db20b2db8fc2b31 (diff) | |
download | skaldpress-33413e77ddaaca00d6b93b3aa4c917e4e3e2b4f0.tar.gz skaldpress-33413e77ddaaca00d6b93b3aa4c917e4e3e2b4f0.zip |
Add punycode feature to minireq, add doc on wodl-macro
-rw-r--r-- | Cargo.lock | 7 | ||||
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | smp.1 | 1 |
3 files changed, 9 insertions, 1 deletions
@@ -136,6 +136,7 @@ checksum = "763d142cdff44aaadd9268bebddb156ef6c65a0e13486bb81673cf2d8739f9b0" dependencies = [ "log", "once_cell", + "punycode", "rustls", "rustls-webpki", "webpki-roots", @@ -166,6 +167,12 @@ dependencies = [ ] [[package]] +name = "punycode" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e9e1dcb320d6839f6edb64f7a4a59d39b30480d4d1765b56873f7c858538a5fe" + +[[package]] name = "quote" version = "1.0.37" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -13,7 +13,7 @@ deadlinks = ["dep:minreq"] [dependencies] markdown = { version = "1.0.0-alpha.20", optional = true } chrono = { version = "0.4.38", optional = true } -minreq = { version = "2.12.0", optional = true, features = ["https"] } +minreq = { version = "2.12.0", optional = true, features = ["https", "punycode"] } [[bin]] name = "skaldpress" @@ -62,6 +62,7 @@ So you should probably always quote arguments to this. .IP "\fBwodl(<url>)\fR" If compiled with \fBdeadlinks\fR, this macro will always return it's argument. But it will also perform a request to the link, and emit a warning if it it doesn't return HTTP 200 OK. +This will significantly slow down compile times! .SH OPTIONS If a input file is provided, that will be processed. |