fetch_core 0.1.0

Core fetch primitives.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

#![cfg_attr(coverage_nightly, feature(coverage_attribute))]
#![cfg_attr(docsrs, feature(doc_cfg))]
#![doc(html_logo_url = "https://media.githubusercontent.com/media/microsoft/oxidizer/refs/heads/main/crates/fetch_core/logo.png")]
#![doc(html_favicon_url = "https://media.githubusercontent.com/media/microsoft/oxidizer/refs/heads/main/crates/fetch_core/favicon.ico")]

//! Core fetch primitives.
//!
//! This crate provides the core types and traits shared across the `fetch_*`
//! family of crates. It is intentionally minimal and dependency-free so it can be
//! consumed by any layer of the fetch stack.