gluerunner 0.1.0

A blazingly fast HTTP client with a magnificent request building syntax, made for humans.
Documentation
1
2
3
4
5
6
7
8
9
use std::{
	collections::HashMap,
	sync::{Arc, Mutex},
};

/// Create a new heap map protected by `Arc<Mutex<T>>`
pub fn heap() -> Arc<Mutex<HashMap<String, String>>> {
	Arc::new(Mutex::new(HashMap::new()))
}