[package]
edition = "2021"
name = "specters"
version = "2.1.2"
authors = ["Jared Boynton"]
build = false
exclude = [
"lib/boringssl/",
"bindings/",
"scripts/",
".github/",
".cargo/",
"examples/",
"justfile",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "HTTP client with full TLS, HTTP/2, and HTTP/3 fingerprint control"
readme = "README.md"
keywords = [
"http",
"http3",
"fingerprint",
"tls",
"boringssl",
]
categories = [
"network-programming",
"web-programming::http-client",
]
license = "MIT"
repository = "https://github.com/jaredboynton/specter"
[lib]
name = "specter"
path = "src/lib.rs"
[[test]]
name = "chrome_versions"
path = "tests/chrome_versions.rs"
[[test]]
name = "compression"
path = "tests/compression.rs"
[[test]]
name = "error_handling"
path = "tests/error_handling.rs"
[[test]]
name = "fingerprint_integration"
path = "tests/fingerprint_integration.rs"
[[test]]
name = "firefox_fingerprint"
path = "tests/firefox_fingerprint.rs"
[[test]]
name = "h1_pooling"
path = "tests/h1_pooling.rs"
[[test]]
name = "h1_rfc_compliance"
path = "tests/h1_rfc_compliance.rs"
[[test]]
name = "h2_flow_control"
path = "tests/h2_flow_control.rs"
[[test]]
name = "h2_frames_debug"
path = "tests/h2_frames_debug.rs"
[[test]]
name = "h2_header_casing"
path = "tests/h2_header_casing.rs"
[[test]]
name = "h2_malformed"
path = "tests/h2_malformed.rs"
[[test]]
name = "h2_multiplexing"
path = "tests/h2_multiplexing.rs"
[[test]]
name = "h2_push_promise"
path = "tests/h2_push_promise.rs"
[[test]]
name = "h2_state_machine"
path = "tests/h2_state_machine.rs"
[[test]]
name = "headers_ja4h"
path = "tests/headers_ja4h.rs"
[[test]]
name = "priority_frames"
path = "tests/priority_frames.rs"
[[test]]
name = "rfc6265_cookies"
path = "tests/rfc6265_cookies.rs"
[[test]]
name = "rfc7541_hpack"
path = "tests/rfc7541_hpack.rs"
[[test]]
name = "rfc7616_digest_auth"
path = "tests/rfc7616_digest_auth.rs"
[[test]]
name = "rfc7617_auth"
path = "tests/rfc7617_auth.rs"
[[test]]
name = "rfc9110_semantics"
path = "tests/rfc9110_semantics.rs"
[[test]]
name = "rfc9111_caching"
path = "tests/rfc9111_caching.rs"
[[test]]
name = "rfc9112_http1"
path = "tests/rfc9112_http1.rs"
[[test]]
name = "rfc9113_http2_frames"
path = "tests/rfc9113_http2_frames.rs"
[[test]]
name = "rfc9114_http3_errors"
path = "tests/rfc9114_http3_errors.rs"
[[test]]
name = "rfc9114_http3_protocol"
path = "tests/rfc9114_http3_protocol.rs"
[[test]]
name = "streaming_integration"
path = "tests/streaming_integration.rs"
[[test]]
name = "tls_mock_server"
path = "tests/tls_mock_server.rs"
[dependencies.base64]
version = "0.22.1"
[dependencies.boring]
version = "4"
[dependencies.boring-sys]
version = "4"
[dependencies.brotli]
version = "8"
[dependencies.bytes]
version = "1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.flate2]
version = "1"
[dependencies.getrandom]
version = "0.3"
[dependencies.hex]
version = "0.4"
[dependencies.http]
version = "1"
[dependencies.httparse]
version = "1"
[dependencies.psl]
version = "2"
[dependencies.quiche]
version = "0.24"
features = ["boringssl-boring-crate"]
default-features = false
[dependencies.rustls-native-certs]
version = "0.8"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_urlencoded]
version = "0.7"
[dependencies.sha2]
version = "0.10"
[dependencies.socket2]
version = "0.6"
features = ["all"]
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"net",
"time",
"sync",
"rt-multi-thread",
"macros",
"fs",
"io-util",
]
[dependencies.tokio-boring]
version = "4"
[dependencies.tracing]
version = "0.1"
[dependencies.url]
version = "2"
[dependencies.zstd]
version = "0.13"
[dev-dependencies.hex]
version = "0.4"
[dev-dependencies.rcgen]
version = "0.14.5"
[dev-dependencies.tokio-test]
version = "0.4"
[dev-dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]