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"]
|
||||
|
||||
[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"
|
||||
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" }
|
||||
once_cell = "1.18.0"
|
||||
percent-encoding = "2.3.0"
|
||||
regex = "1"
|
||||
scraper = "0.17.1"
|
||||
serde = { version = "1.0", features = ["derive", "rc"] }
|
||||
serde_json = "1.0"
|
||||
futures = "0.3.25"
|
||||
serde_with = "3.3.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]
|
||||
reqwest = { package = "reqwest-wasm", version = "0.11.16", features = [
|
||||
"json",
|
||||
"cookies",
|
||||
"blocking",
|
||||
"stream",
|
||||
] }
|
||||
cached = { version = "0.41.0", default_features = false, features = [
|
||||
"proc_macro",
|
||||
"wasm",
|
||||
] }
|
||||
[target.'cfg(target_arch = "wasm32")'.dependencies.reqwest]
|
||||
package = "reqwest-wasm"
|
||||
version = "0.11.16"
|
||||
features = ["json", "cookies", "blocking", "stream"]
|
||||
|
||||
[target.'cfg(target_arch = "wasm32")'.dependencies.cached]
|
||||
version = "0.44.0" # TODO: update to v0.45.x
|
||||
default_features = false
|
||||
features = ["proc_macro", "wasm"]
|
||||
|
||||
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
||||
clap = { version = "3.2.23", features = ["derive"] }
|
||||
tokio = { version = "1.22.0", features = ["full"] }
|
||||
env_logger = "0.9.3"
|
||||
cached = "0.41.0"
|
||||
reqwest = { version = "0.11.13", features = [
|
||||
"json",
|
||||
"cookies",
|
||||
"blocking",
|
||||
"stream",
|
||||
] }
|
||||
cached = "0.44.0" # TODO: update to v0.45.x
|
||||
clap = { version = "4.4.3", features = ["derive"] }
|
||||
env_logger = "0.10.0"
|
||||
tokio = { version = "1.32.0", features = ["full"] }
|
||||
|
||||
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.reqwest]
|
||||
version = "0.11.20"
|
||||
features = ["json", "cookies", "blocking", "stream"]
|
||||
|
|
Reference in a new issue