conllu/
lib.rs

1//! Traits to read/write `udgraph` graphs from CoNLL-U format.
2
3mod error;
4pub use crate::error::{Error, ParseError};
5
6pub mod io;
7
8pub mod display;
9
10#[cfg(test)]
11mod tests;