forked from linebender/resvg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
44 lines (39 loc) · 1.16 KB
/
Cargo.toml
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
36
37
38
39
40
41
42
43
44
[package]
name = "usvg"
version = "0.8.0"
authors = ["Evgeniy Reizner <razrfalcon@gmail.com>"]
keywords = ["svg"]
license = "MPL-2.0"
edition = "2018"
description = "An SVG simplification library."
categories = ["multimedia::images"]
repository = "https://github.com/RazrFalcon/resvg"
documentation = "https://docs.rs/usvg/"
readme = "README.md"
exclude = ["testing-tools/**"]
workspace = ".."
[badges]
travis-ci = { repository = "RazrFalcon/resvg" }
[dependencies]
base64 = "0.10"
data-url = "0.1"
flate2 = { version = "1.0.11", default-features = false, features = ["rust_backend"]}
kurbo = "0.2.3"
log = "0.4"
rctree = "0.3"
xmlwriter = "0.1"
# for svgtree
roxmltree = "0.7"
simplecss = "0.2"
siphasher = "0.2.3"
svgtypes = "0.5"
# for text to path
harfbuzz_rs = { version = "1.0", optional = true }
memmap = { version = "0.7", optional = true }
ttf-parser = { version = "0.2.2", optional = true }
unicode-bidi = { version = "0.3", optional = true }
unicode-script = { version = "0.3", optional = true }
unicode-vo = { version = "0.1", optional = true }
[features]
default = ["text"]
text = ["harfbuzz_rs", "memmap", "ttf-parser", "unicode-bidi", "unicode-script", "unicode-vo"]