vinyl-embly 0.0.2

it's vinyl for embly
docs.rs failed to build vinyl-embly-0.0.2
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: vinyl-embly-0.0.1
Vinyl is ```no_run use failure::Error; use embly::prelude::*; use vinyl_embly::query::field; use vinyl_embly::DB; use vinyl_core::proto::example::{Color, Flower, Order}; fn main() -> Result<(), Error> { let db = DB::new("flowers")?; let mut order = Order::new(); order.order_id = 2; order.price = 20; let mut flower = Flower::new(); flower.field_type = String::from("ROSE"); flower.color = Color::RED; order.set_flower(flower); db.insert(order)?.wait()?; let orders: Vec = db .execute_query( field("price").less_than(50) & field("flower").matches(field("type").equals("ROSE")), )? .wait()?; db.delete_record::(2)?.wait()?; Ok(()) } ```