-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
44 lines (41 loc) · 1.32 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 = "nelsie"
version = "0.15.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "nelsie"
crate-type = ["cdylib"]
[dependencies]
pyo3 = { version = "0.22", features = ["abi3-py310", "extension-module"] }
taffy = "0.5"
resvg = "0.43"
svg2pdf = "0.12" # !!synchronized with resvg
thiserror = "1"
svgtypes = "0.15" # Not necessary same as resvg but nice to be a same as in resvg
log = "0.4"
env_logger = "0.11"
pdf-writer = "0.12"
itertools = "0.13"
imagesize = "0.13"
zip = { version = "2", default-features = false, features = ["deflate"] }
syntect = { version = "5", default-features = false, features = ["default-fancy"] }
indicatif = "0.17"
base64 = "0.22"# Nice to be synchronized with resvg
xmltree = { version = "0.11", features = ["attribute-order"] }
image = "0.25" # Nice to be sycnrhonized with svg2pdf
miniz_oxide = "0.8" # Nice to be sycnrhonized with svg2pdf
by_address = "1"
rayon = "1.10"
notify = "6.1"
smallvec = "1"
chumsky = "0.9"
parley = { git = "https://github.com/linebender/parley.git", rev = "e8230d8382f799cd839ab63e136ed594622dc9fb" }
skrifa = "0.19"
kurbo = "*" # Lets us give a version specified in parley -> penico -> kurbo
strict-num = "0.1"
[profile.release]
lto = true
codegen-units = 1
panic = "abort"
debug = "line-tables-only"