chuchi 0.1.5

Http async library based on hyper and tokio
Documentation
<!--
 *  Copyright (c) 2021 GraphQL Contributors
 *  All rights reserved.
 *
 *  This source code is licensed under the license found in the
 *  LICENSE file in the root directory of this source tree (MIT).
-->
<!doctype html>
<html lang="en">
	<head>
		<title>GraphiQL</title>
		<style>
			body {
				height: 100%;
				margin: 0;
				width: 100%;
				overflow: hidden;
			}

			#graphiql {
				height: 100vh;
			}
		</style>

		<script
			crossorigin
			src="https://unpkg.com/react@18/umd/react.development.js"
		></script>
		<script
			crossorigin
			src="https://unpkg.com/react-dom@18/umd/react-dom.development.js"
		></script>

		<link rel="stylesheet" href="https://unpkg.com/graphiql/graphiql.min.css" />
	</head>

	<body>
		<div id="graphiql">Loading...</div>
		<script
			src="https://unpkg.com/graphiql/graphiql.min.js"
			type="application/javascript"
		></script>
		<script>
			const root = ReactDOM.createRoot(document.getElementById('graphiql'));
			root.render(
				React.createElement(GraphiQL, {
					fetcher: GraphiQL.createFetcher({
						url: '{graphql_url}',
					}),
					defaultEditorToolsVisibility: true,
				}),
			);
		</script>
	</body>
</html>