csv2svg 0.1.5

take a csv as input and outputs svg
Documentation
#[macro_use] extern crate log;

mod app;
mod cli;
mod graph;
mod html;
mod nature;
mod projector;
mod raw;
mod rect;
mod scale;
mod seq;
mod skin;
mod tbl;
mod unoverlap;
mod visibility;

pub use {
    app::*,
    cli::*,
    graph::*,
    html::*,
    nature::*,
    projector::*,
    raw::*,
    rect::*,
    scale::*,
    seq::*,
    skin::*,
    tbl::*,
    unoverlap::*,
    visibility::*,
};