1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
#![doc(html_logo_url = "https://nical.github.io/lyon-doc/lyon-logo.svg")]

//! #Lyon SVG
//!
//! Utilities to facilitate interfacing with SVG.
//! At the moment this is mostly a wrapper around the [svgparser](https://crates.io/crates/svgparser)
//! crate.

#![allow(dead_code)]

pub extern crate lyon_path as path;
pub extern crate svgparser as parser;

pub mod path_utils;