[package] name = "pinterest-rs" version = "0.0.0" edition = "2021" authors = ["Anas Elgarhy "] description = "WIP" license = "MIT OR Unlicense" repository = "https://github.com/0x61nas/pinterest-rs" documentation = "https://docs.rs/pinterest-rs" keywords = [ "pinterest", "login", "authentication", "pinterest-api", ] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] serde = { version = "1.0.188", features = ["derive"] } serde_json = "1.0.107" serde_urlencoded = "0.7.1" urlencoding = "2.1.3" url = "2.4.1" thiserror = "1" [dependencies.reqwest] version = "0.11.20" features = ["cookies"] [dependencies.pinterest-login] version = "0.1.0" default-features = false optional = true [dependencies.async-std] version = "1.12.0" optional = true [dependencies.tokio] version = "1.32.0" optional = true [dependencies.log] version = "0.4.20" optional = true [features] default = ["async-std-runtime", "login"] async-std-runtime = ["async-std", "pinterest-login/async-std-runtime"] tokio-runtime = ["tokio", "pinterest-login/tokio-runtime"] login = ["pinterest-login"] credentials = [] debug = ["log"]