[package] name = "fsolver" description = "A simple wrapper around the FlareSolverr API" version = "1.0.0" edition = "2021" authors = ["NandeMD"] readme = "README.md" license-file = "LICENSE" repository = "https://github.com/NandeMD/fsolver-rs" keywords = ["wrapper", "flaresolverr", "async", "web", "scraping"] categories = ["api-bindings"] [features] default = ["async"] async = [] blocking = ["reqwest/blocking"] all = ["async", "blocking"] [dependencies] reqwest = { version = "0.12.9", features = ["json"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" anyhow = "1.0" [dev-dependencies] tokio = { version = "1.4", default-features = false, features = [ "rt", "macros", ] }