gwp 0.2.1

A standalone, pure Rust gRPC wire protocol for GQL (ISO/IEC 39075)
Documentation
//! Ergonomic Rust types for the GQL type system.
//!
//! These types wrap the generated protobuf types with a native Rust API.
//! Backend implementors and client users interact with these types rather
//! than the raw protobuf representations.

mod edge;
mod node;
mod path;
mod record;
mod temporal;
mod value;

pub use edge::Edge;
pub use node::Node;
pub use path::Path;
pub use record::{Field, Record};
pub use temporal::{Date, Duration, LocalDateTime, LocalTime, ZonedDateTime, ZonedTime};
pub use value::Value;