Improve error handling and fix compilation errors

This commit is contained in:
nab138
2025-08-06 22:13:57 -04:00
parent 9baf77f00e
commit e94d7b6448
6 changed files with 98 additions and 63 deletions

View File

@@ -3,7 +3,9 @@ name = "icloud_auth"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = []
vendored-botan = ["botan/vendored"]
[dependencies]
serde = { version = "1.0.219", features = ["derive"] }
@@ -25,7 +27,7 @@ reqwest = { version = "0.11.14", features = ["blocking", "json", "default-tls"]
omnisette = {path = "../omnisette", features = ["remote-anisette-v3"]}
thiserror = "1.0.58"
tokio = "1"
botan = { version = "0.11.1", features = ["vendored"] }
botan = { version = "0.11.1" }
chrono = { version = "0.4", features = ["serde"] }
[dev-dependencies]