summaryrefslogtreecommitdiffstats
path: root/svgbob/Cargo.toml
blob: 3ad6f7bddb3a4f3da0e389c7b4f90acf66274aac (plain)
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
[package]
name = "svgbob"
version = "0.5.3"
authors = ["Jovansonlee Cesar <ivanceras@gmail.com>"]
edition = "2018"
description = "Transform your ascii diagrams into happy little SVG"
repository = "https://github.com/ivanceras/svgbob"
documentation = "https://docs.rs/svgbob"
keywords = ["ascii","plain","text", "svg", "bob"]
license = "Apache-2.0"

[dependencies]
nalgebra = "0.28"
parry2d = "0.6"
lazy_static = "1.3.0"
sauron = { version = "0.34" }
unicode-width = "0.1.5"
itertools = "0.8.0"
pom = { version = "3.1.0" }



[features]
# This affects the rendering of text nodes
# if the svg is rendered statically, characters such as '<' needed to be escaped
# while if it is rendered in the dom, no escaping is needed.
with-dom = []