[package] name = "product-os-request" version = "0.0.39" # version - The version of the package. authors = ["Jeremy de Oliveira-Kumar "] # authors - The authors of the package. edition = "2021" # edition - The Rust edition. 2021 rust-version = "1.69" # rust-version - The minimal supported Rust version. min 1.69 description = "Product OS : Request provides a fully featured HTTP request library combining elements of reqwest and ureq for both sync and async requests with a series of helper methods to allow for easier usage depending upon your needs for one-time or repeat usage." # description - A description of the package. # documentation = "" # documentation - URL of the package documentation. readme = "readme.md" # readme - Path to the package’s README file. Use https://www.makeareadme.com/ # homepage = "" # homepage - URL of the package homepage. # repository = "" # repository - URL of the package source repository. license = "AGPL-3.0-only" # license - The package license. # license-file = "license.txt" # license-file - Path to the text of the license. Use https://choosealicense.com/ keywords = ["product-os"] # keywords - Keywords for the package. categories = [] # categories - Categories of the package. https://crates.io/category_slugs # workspace = "" # workspace - Path to the workspace for the package. build = false # build - Path to the package build script. default "build.rs" or specify # links = "" # links - Name of the native library the package links with. exclude = [] # exclude - Files to exclude when publishing. include = [] # include - Files to include when publishing. # publish = [] # publish - Can be used to prevent publishing the package. false to prevent publish, list of registries otherwise # default-run = "" # default-run - The default binary to run by cargo run. autobins = true # autobins - Disables binary auto discovery. autoexamples = true # autoexamples - Disables example auto discovery. autotests = true # autotests - Disables test auto discovery. autobenches = true # autobenches - Disables bench auto discovery. resolver = "2" # resolver - Sets the dependency resolver to use. Use 2 with 2021, 1 prior # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] no-std-compat = { version = "0.4.1", features = ["alloc"], optional = false } async-trait = { version = "0.1.74", features = [], default-features = false, optional = false } hyper = { version = "1.0.1", features = [], default-features = false, optional = true } url = { version = "2.4.1", features = [], default-features = false, optional = true } reqwest = { version = "0.11.22", features = [], default-features = false, optional = true } rustls = { version = "0.21.6", features = [], default-features = false, optional = true } tracing = { version = "0.1.29", features = [], default-features = false, optional = true } serde = { version = "1.0.132", features = [], default-features = false, optional = true } # Support for serialize/deserialize objects serde_json = { version = "1.0.73", features = [], default-features = false, optional = true } # Support for JSON structures serde_urlencoded = { version = "0.7.0", features = [], default-features = false, optional = true } # Support for URL encoded structures futures-core = { version = "0.3.30", features = [], default-features = false, optional = true } bytes = { version = "1.1.0", features = [], default-features = false, optional = true } product-os-http = { version = ">= 0.0.1", features = [], default-features = false, optional = true } product-os-http-body = { version = ">= 0.0.1", features = [], default-features = false, optional = true } [patch.crates-io] product-os-http = { path = "../product-os-http", features = [], default-features = false, optional = true } product-os-http-body = { path = "../product-os-http-body", features = [], default-features = false, optional = true } [features] default = ["no-std-compat/std", "std"] method = ["product-os-http", "serde/derive"] response = ["tracing", "product-os-http", "product-os-http-body"] request = ["bytes", "futures-core", "tracing", "serde/derive", "method", "response", "product-os-http", "product-os-http-body"] custom = ["no-std-compat/std", "request", "response", "method", "serde/derive", "reqwest", "reqwest/gzip", "reqwest/brotli", "reqwest/rustls-tls", "reqwest/rustls", "reqwest/cookies", "reqwest/serde_json"] method_std = ["product-os-http/std", "serde/derive"] response_std = ["tracing", "product-os-http/std", "product-os-http-body/std"] request_std = ["bytes", "futures-core", "tracing", "serde/derive", "method_std", "response_std", "product-os-http/std", "product-os-http-body/std"] std = ["no-std-compat/std", "request_std", "response_std", "method_std", "serde/derive", "reqwest", "reqwest/gzip", "reqwest/brotli", "reqwest/rustls-tls", "reqwest/rustls", "reqwest/cookies", "reqwest/serde_json"] json = ["serde_json"] form = ["serde_urlencoded"] [workspace]