conllx 0.12.1

Readers/writers for the CoNLL-X dependency format
Documentation
mod error;
pub use crate::error::{GraphError, ReadError};

pub mod graph;

mod graph_algo;
pub(crate) use crate::graph_algo::BfsWithDepth;

pub mod io;

pub mod proj;

pub mod token;

#[cfg(test)]
mod tests;