stamtools/
lib.rs

1/*
2    STAM Library (Stand-off Text Annotation Model)
3        by Maarten van Gompel <proycon@anaproy.nl>
4        Digital Infrastucture, KNAW Humanities Cluster
5
6        Licensed under the GNU General Public License v3
7
8        https://github.com/annotation/stam-tools
9*/
10
11//! This library powers the command line tools that offer various functionality for STAM.
12
13pub mod align;
14pub mod annotate;
15pub mod grep;
16pub mod info;
17pub mod print;
18pub mod query;
19pub mod split;
20pub mod tag;
21pub mod to_text;
22pub mod translate;
23pub mod transpose;
24pub mod tsv;
25pub mod validate;
26pub mod view;
27pub mod xml;
28
29pub const VERSION: &'static str = env!("CARGO_PKG_VERSION");