Update dependencies
This commit is contained in:
parent
9e41e65c45
commit
ed163b9a42
2 changed files with 754 additions and 581 deletions
1269
Cargo.lock
generated
1269
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
66
Cargo.toml
66
Cargo.toml
|
@ -18,46 +18,42 @@ wasm-opt = ["-Oz", "--enable-mutable-globals"]
|
||||||
crate-type = ["cdylib", "rlib"]
|
crate-type = ["cdylib", "rlib"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
vec1 = { version = "1.10.1", features = ["serde"] }
|
|
||||||
flo_stream = "0.7"
|
|
||||||
itertools = "0.10.5"
|
|
||||||
serde_with = "2.1.0"
|
|
||||||
html5ever = "0.26.0"
|
|
||||||
percent-encoding = "2.2.0"
|
|
||||||
url = { version = "2.3.1", features = ["serde"] }
|
|
||||||
regex = "1"
|
|
||||||
log = "0.4.17"
|
|
||||||
once_cell = "1.16.0"
|
|
||||||
scraper = "0.13.0"
|
|
||||||
byteorder = "1.4.3"
|
byteorder = "1.4.3"
|
||||||
data-url = "0.2.0"
|
data-url = "0.3.0"
|
||||||
|
flo_stream = "0.7"
|
||||||
|
futures = "0.3.28"
|
||||||
|
html5ever = "0.26.0"
|
||||||
|
itertools = "0.11.0"
|
||||||
|
log = "0.4.20"
|
||||||
|
lol_html = "0.4.0" # TODO: Update to v1.2.x
|
||||||
mime = { package = "mime_4", version = "0.4.0-a.0" }
|
mime = { package = "mime_4", version = "0.4.0-a.0" }
|
||||||
|
once_cell = "1.18.0"
|
||||||
|
percent-encoding = "2.3.0"
|
||||||
|
regex = "1"
|
||||||
|
scraper = "0.17.1"
|
||||||
serde = { version = "1.0", features = ["derive", "rc"] }
|
serde = { version = "1.0", features = ["derive", "rc"] }
|
||||||
serde_json = "1.0"
|
serde_json = "1.0"
|
||||||
futures = "0.3.25"
|
serde_with = "3.3.0"
|
||||||
tldextract = "0.6.0"
|
tldextract = "0.6.0"
|
||||||
lol_html = "0.3.2"
|
url = { version = "2.4.1", features = ["serde"] }
|
||||||
|
vec1 = { version = "1.10.1", features = ["serde"] }
|
||||||
|
|
||||||
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
[target.'cfg(target_arch = "wasm32")'.dependencies.reqwest]
|
||||||
reqwest = { package = "reqwest-wasm", version = "0.11.16", features = [
|
package = "reqwest-wasm"
|
||||||
"json",
|
version = "0.11.16"
|
||||||
"cookies",
|
features = ["json", "cookies", "blocking", "stream"]
|
||||||
"blocking",
|
|
||||||
"stream",
|
[target.'cfg(target_arch = "wasm32")'.dependencies.cached]
|
||||||
] }
|
version = "0.44.0" # TODO: update to v0.45.x
|
||||||
cached = { version = "0.41.0", default_features = false, features = [
|
default_features = false
|
||||||
"proc_macro",
|
features = ["proc_macro", "wasm"]
|
||||||
"wasm",
|
|
||||||
] }
|
|
||||||
|
|
||||||
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
||||||
clap = { version = "3.2.23", features = ["derive"] }
|
cached = "0.44.0" # TODO: update to v0.45.x
|
||||||
tokio = { version = "1.22.0", features = ["full"] }
|
clap = { version = "4.4.3", features = ["derive"] }
|
||||||
env_logger = "0.9.3"
|
env_logger = "0.10.0"
|
||||||
cached = "0.41.0"
|
tokio = { version = "1.32.0", features = ["full"] }
|
||||||
reqwest = { version = "0.11.13", features = [
|
|
||||||
"json",
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.reqwest]
|
||||||
"cookies",
|
version = "0.11.20"
|
||||||
"blocking",
|
features = ["json", "cookies", "blocking", "stream"]
|
||||||
"stream",
|
|
||||||
] }
|
|
||||||
|
|
Reference in a new issue