1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#[cfg(feature = "node")]
extern crate napi;
#[cfg(feature = "node")]
extern crate napi_derive;
#[cfg(feature = "node")]
mod bindings;
#[cfg(feature = "node")]
pub use bindings::napi as napi_bindings;
extern crate random_string;
extern crate error_chain;
extern crate serde_json;
extern crate serde;
extern crate svg;
extern crate svgtypes;
extern crate regex;
mod diff;
mod errors;
mod svg_tag;
pub use svg_tag::parse_svg_tag;
pub use svg_tag::parse_svg_string;
pub use svg_tag::SVGTag;
pub use svg_tag::print_svg;
pub use self::diff::diff;
pub use self::diff::diff_from_strings;
pub use self::diff::diffs;
pub use self::diff::JsonDiff;
pub use self::diff::write_json_diff;