summaryrefslogtreecommitdiffstats
path: root/packages/svgbob/Cargo.toml
blob: 56616a585e0e4ae20f7165f7eb1ca66257bf99e1 (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
29
30
31
[package]
name = "svgbob"
version = "0.7.2"
authors = ["Jovansonlee Cesar <ivanceras@gmail.com>"]
description = "Transform your ascii diagrams into happy little SVG"
repository = "https://github.com/ivanceras/svgbob"
documentation = "https://docs.rs/svgbob"
keywords = ["ascii", "text", "diagram", "svg", "bob"]
license = "Apache-2.0"
edition = "2021"

[dependencies]
nalgebra = "0.32.1"
parry2d = "0.13.5"
once_cell = "1.18.0"
#sauron = { version = "0.60.0", default-features = false, features = ["with-jss"] }
sauron = { path = "../../../sauron", default-features = false, features = ["with-jss"]}
unicode-width = "0.1.9"
itertools = "0.11.0"
pom = { version = "3.2.0" }
log = "0.4.14"
indexmap = "2.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 = ["sauron/with-dom"]