barehttp 0.1.0

Blocking HTTP/1.1 client for no_std + alloc
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! trybuild UI compile tests for the public API surface.
//!
//! Pass fixtures: `tests/ui/pass/*.rs`
//! Fail fixtures: `tests/ui/fail/*.rs` (+ committed `.stderr` fragments)
//!
//! Edition 2024 / recent nightlies: if trybuild becomes sticky, prefer
//! `tests/api_compile.rs` (compile-pass only) and document the failure here.

#[test]
fn ui() {
  let t = trybuild::TestCases::new();
  t.pass("tests/ui/pass/*.rs");
  t.compile_fail("tests/ui/fail/*.rs");
}