diff options
| author | A Farzat <a@farzat.xyz> | 2026-02-11 11:13:36 +0300 |
|---|---|---|
| committer | A Farzat <a@farzat.xyz> | 2026-02-11 11:13:36 +0300 |
| commit | 2d9314aa3145ec7948341f38164e13c2a2d945ad (patch) | |
| tree | 29f69a0b89983fbeb2f0227698aab9dd884d9a54 /Cargo.lock | |
| parent | 3321918c009e9d7a7a3c3c2a1f490bb91fefb2bc (diff) | |
| download | safaribooks-rs-2d9314aa3145ec7948341f38164e13c2a2d945ad.tar.gz safaribooks-rs-2d9314aa3145ec7948341f38164e13c2a2d945ad.zip | |
Add a login check
Try to access the profile page to see if the cookies work or not.
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -1006,6 +1006,7 @@ dependencies = [ "reqwest", "serde", "serde_json", + "tokio", "tracing", "tracing-subscriber", ] @@ -1265,10 +1266,22 @@ dependencies = [ "mio", "pin-project-lite", "socket2", + "tokio-macros", "windows-sys 0.61.2", ] [[package]] +name = "tokio-macros" +version = "2.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] name = "tokio-rustls" version = "0.26.4" source = "registry+https://github.com/rust-lang/crates.io-index" |
