1
2
3
4
5
6
7
8
9
10
11
//! Traits to read/write `udgraph` graphs from CoNLL-U format.

mod error;
pub use crate::error::{Error, ParseError};

pub mod io;

pub mod display;

#[cfg(test)]
mod tests;