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

//! Utilities to facilitate interfacing lyon with SVG.
//!
//! At the moment this is mostly a wrapper around the [svgparser](https://crates.io/crates/svgparser)
//! crate.
//!
//! This crate is reexported in [lyon](https://docs.rs/lyon/).

#![allow(dead_code)]

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

pub mod path_utils;