[package]
edition = "2024"
rust-version = "1.96"
name = "earl-protocol-http"
version = "0.6.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "HTTP and GraphQL execution protocol for earl"
homepage = "https://github.com/mathematic-inc/earl"
documentation = "https://mathematic-inc.github.io/earl"
readme = false
keywords = [
"agent",
"graphql",
"http",
"protocol",
]
categories = [
"network-programming",
"web-programming",
]
license = "Apache-2.0"
repository = "https://github.com/mathematic-inc/earl"
[lib]
name = "earl_protocol_http"
path = "src/lib.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.base64]
version = "0.23"
[dependencies.earl-core]
version = "0.6.2"
[dependencies.reqwest]
version = "0.13.4"
features = [
"brotli",
"deflate",
"form",
"gzip",
"json",
"multipart",
"query",
"rustls",
"zstd",
]
[dependencies.rkyv]
version = "0.8"
features = [
"bytecheck",
"std",
]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.tokio]
version = "1"
features = ["sync"]
[dependencies.url]
version = "2.5"