I'm trying to make MySQL example. After writing this minimal web interface I found 'no overload matches for render' error when the string import vibe.http.server; is uncommented. "vibe-d": "~>0.8.0-rc.3"

module WebInterface;

class WebInterface
{
	import vibe.web.web;
//	import vibe.http.server;
	
	@path("/")
	void getIndex()
	{
		render!("index.dt");
	}

}