Spaces:
Running
Running
Merge pull request #296 from neon-mmd/dependabot/cargo/reqwest-0.11.21
Browse files- Cargo.lock +25 -3
- Cargo.toml +1 -1
Cargo.lock
CHANGED
|
@@ -2802,9 +2802,9 @@ dependencies = [
|
|
| 2802 |
|
| 2803 |
[[package]]
|
| 2804 |
name = "reqwest"
|
| 2805 |
-
version = "0.11.
|
| 2806 |
source = "registry+https://github.com/rust-lang/crates.io-index"
|
| 2807 |
-
checksum = "
|
| 2808 |
dependencies = [
|
| 2809 |
"base64 0.21.4",
|
| 2810 |
"bytes 1.5.0",
|
|
@@ -2827,6 +2827,7 @@ dependencies = [
|
|
| 2827 |
"serde",
|
| 2828 |
"serde_json",
|
| 2829 |
"serde_urlencoded 0.7.1",
|
|
|
|
| 2830 |
"tokio 1.32.0",
|
| 2831 |
"tokio-native-tls",
|
| 2832 |
"tower-service",
|
|
@@ -3320,6 +3321,27 @@ dependencies = [
|
|
| 3320 |
"libc",
|
| 3321 |
]
|
| 3322 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3323 |
[[package]]
|
| 3324 |
name = "tagptr"
|
| 3325 |
version = "0.2.0"
|
|
@@ -3956,7 +3978,7 @@ dependencies = [
|
|
| 3956 |
"rand 0.8.5",
|
| 3957 |
"redis",
|
| 3958 |
"regex",
|
| 3959 |
-
"reqwest 0.11.
|
| 3960 |
"rusty-hook",
|
| 3961 |
"scraper",
|
| 3962 |
"serde",
|
|
|
|
| 2802 |
|
| 2803 |
[[package]]
|
| 2804 |
name = "reqwest"
|
| 2805 |
+
version = "0.11.21"
|
| 2806 |
source = "registry+https://github.com/rust-lang/crates.io-index"
|
| 2807 |
+
checksum = "78fdbab6a7e1d7b13cc8ff10197f47986b41c639300cc3c8158cac7847c9bbef"
|
| 2808 |
dependencies = [
|
| 2809 |
"base64 0.21.4",
|
| 2810 |
"bytes 1.5.0",
|
|
|
|
| 2827 |
"serde",
|
| 2828 |
"serde_json",
|
| 2829 |
"serde_urlencoded 0.7.1",
|
| 2830 |
+
"system-configuration",
|
| 2831 |
"tokio 1.32.0",
|
| 2832 |
"tokio-native-tls",
|
| 2833 |
"tower-service",
|
|
|
|
| 3321 |
"libc",
|
| 3322 |
]
|
| 3323 |
|
| 3324 |
+
[[package]]
|
| 3325 |
+
name = "system-configuration"
|
| 3326 |
+
version = "0.5.1"
|
| 3327 |
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
| 3328 |
+
checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7"
|
| 3329 |
+
dependencies = [
|
| 3330 |
+
"bitflags 1.3.2",
|
| 3331 |
+
"core-foundation",
|
| 3332 |
+
"system-configuration-sys",
|
| 3333 |
+
]
|
| 3334 |
+
|
| 3335 |
+
[[package]]
|
| 3336 |
+
name = "system-configuration-sys"
|
| 3337 |
+
version = "0.5.0"
|
| 3338 |
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
| 3339 |
+
checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9"
|
| 3340 |
+
dependencies = [
|
| 3341 |
+
"core-foundation-sys",
|
| 3342 |
+
"libc",
|
| 3343 |
+
]
|
| 3344 |
+
|
| 3345 |
[[package]]
|
| 3346 |
name = "tagptr"
|
| 3347 |
version = "0.2.0"
|
|
|
|
| 3978 |
"rand 0.8.5",
|
| 3979 |
"redis",
|
| 3980 |
"regex",
|
| 3981 |
+
"reqwest 0.11.21",
|
| 3982 |
"rusty-hook",
|
| 3983 |
"scraper",
|
| 3984 |
"serde",
|
Cargo.toml
CHANGED
|
@@ -7,7 +7,7 @@ repository = "https://github.com/neon-mmd/websurfx"
|
|
| 7 |
license = "AGPL-3.0"
|
| 8 |
|
| 9 |
[dependencies]
|
| 10 |
-
reqwest = {version="0.11.
|
| 11 |
tokio = {version="1.32.0",features=["rt-multi-thread","macros"]}
|
| 12 |
serde = {version="1.0.188",features=["derive"]}
|
| 13 |
handlebars = { version = "4.4.0", features = ["dir_source"] }
|
|
|
|
| 7 |
license = "AGPL-3.0"
|
| 8 |
|
| 9 |
[dependencies]
|
| 10 |
+
reqwest = {version="0.11.21",features=["json"]}
|
| 11 |
tokio = {version="1.32.0",features=["rt-multi-thread","macros"]}
|
| 12 |
serde = {version="1.0.188",features=["derive"]}
|
| 13 |
handlebars = { version = "4.4.0", features = ["dir_source"] }
|