publish unpublished packages

This commit is contained in:
Sam Denty 2021-01-29 12:55:25 +00:00
parent df6622e940
commit 2cd92eb65e
No known key found for this signature in database
GPG key ID: F3E9308D4A43BC0E
2 changed files with 25 additions and 21 deletions

40
Cargo.lock generated
View file

@ -769,18 +769,20 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d" checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
[[package]] [[package]]
name = "mime" name = "mime-parse-4"
version = "0.4.0-a.0" version = "0.0.0"
source = "git+https://github.com/hyperium/mime#938484de95445a2af931515d2b7252612c575da7" source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [ checksum = "5c6529c7e080378ede23c38da0898fa2760183703f089502b3435aa24d7d8f48"
"mime-parse",
"quoted-string",
]
[[package]] [[package]]
name = "mime-parse" name = "mime_4"
version = "0.0.0" version = "0.4.0-a.0"
source = "git+https://github.com/hyperium/mime#938484de95445a2af931515d2b7252612c575da7" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "12e445295d66528bac7490cdb1d5329c4a203a5ce26263c8db49a9df04d4c1ca"
dependencies = [
"mime-parse-4",
"quoted-string",
]
[[package]] [[package]]
name = "mio" name = "mio"
@ -1276,9 +1278,10 @@ dependencies = [
] ]
[[package]] [[package]]
name = "reqwest" name = "reqwest-wasm"
version = "0.11.0" version = "0.11.0"
source = "git+https://github.com/samdenty/reqwest#fa1d8143d206fff3439b1ef481b6879357b0c29e" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f95c6f51c387d62928baa7c144f1e58a318ee8297c632ae224a9ba4ff9b39e12"
dependencies = [ dependencies = [
"base64", "base64",
"bytes 1.0.1", "bytes 1.0.1",
@ -1296,7 +1299,7 @@ dependencies = [
"js-sys", "js-sys",
"lazy_static", "lazy_static",
"log", "log",
"mime 0.3.16", "mime",
"native-tls", "native-tls",
"percent-encoding", "percent-encoding",
"pin-project-lite 0.2.4", "pin-project-lite 0.2.4",
@ -1526,17 +1529,17 @@ dependencies = [
"html5ever", "html5ever",
"itertools", "itertools",
"log", "log",
"mime 0.4.0-a.0", "mime_4",
"once_cell", "once_cell",
"pin-utils", "pin-utils",
"regex", "regex",
"reqwest", "reqwest-wasm",
"scraper", "scraper",
"serde", "serde",
"serde_json", "serde_json",
"serde_with", "serde_with",
"tokio 1.1.0", "tokio 1.1.0",
"tokio-byteorder", "tokio-futures-byteorder",
"url", "url",
"wee_alloc", "wee_alloc",
] ]
@ -1819,9 +1822,10 @@ dependencies = [
] ]
[[package]] [[package]]
name = "tokio-byteorder" name = "tokio-futures-byteorder"
version = "0.2.0" version = "0.2.0"
source = "git+https://github.com/samdenty/tokio-byteorder#bed45e14aa3ef3d9c76f70d8c0edf10a7c98abd6" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1756daf249ff9da425f11affc6e1c61e79c068cfa87b3bb946a12f8cf81683b3"
dependencies = [ dependencies = [
"byteorder", "byteorder",
"futures-io", "futures-io",

View file

@ -25,13 +25,13 @@ regex = "1"
log = "0.4.14" log = "0.4.14"
once_cell = "1.5.2" once_cell = "1.5.2"
scraper = "0.12.0" scraper = "0.12.0"
tokio-byteorder = { git = "https://github.com/samdenty/tokio-byteorder", version = "0.2.0", features = ["futures"] } tokio-futures-byteorder = { version = "0.2.0", features = ["futures"] }
byteorder = "1.4.2" byteorder = "1.4.2"
data-url = "0.1.0" data-url = "0.1.0"
mime = { git = "https://github.com/hyperium/mime", version = "0.4.0-a.0" } mime_4 = "0.4.0-a.0"
serde = { version = "1.0", features = ["derive", "rc"] } serde = { version = "1.0", features = ["derive", "rc"] }
serde_json = "1.0" serde_json = "1.0"
reqwest = { git = "https://github.com/samdenty/reqwest", version = "0.11.0", features = ["json", "cookies", "blocking", "stream"] } reqwest-wasm = { features = ["json", "cookies", "blocking", "stream"] }
futures = "0.3.12" futures = "0.3.12"
wee_alloc = { version = "0.4.2", optional = true } wee_alloc = { version = "0.4.2", optional = true }