-
-
Notifications
You must be signed in to change notification settings - Fork 287
/
Cargo.toml
100 lines (94 loc) · 2.59 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
[workspace]
members = [
"crates/rnote-compose",
"crates/rnote-engine",
"crates/rnote-cli",
"crates/rnote-ui",
]
resolver = "2"
[workspace.package]
authors = ["The Rnote Authors"]
edition = "2021"
homepage = "https://rnote.flxzt.net"
license = "GPL-3.0-or-later"
repository = "https://github.com/flxzt/rnote"
rust-version = "1.82"
version = "0.11.0"
[workspace.dependencies]
rnote-compose = { version = "0.11.0", path = "crates/rnote-compose" }
rnote-engine = { version = "0.11.0", path = "crates/rnote-engine" }
adw = { version = "0.7.0", package = "libadwaita", features = ["v1_5"] }
anyhow = "1.0"
approx = "0.5.1"
async-fs = "2.1"
base64 = "0.22.1"
cairo-rs = { version = "0.20.1", features = ["v1_18", "png", "svg", "pdf"] }
chrono = "0.4.38"
clap = { version = "4.5", features = ["derive"] }
dialoguer = "0.11.0"
flate2 = "1.0"
fs_extra = "1.3"
futures = "0.3.30"
geo = "0.29.1"
gettext-rs = { version = "0.7.1", features = ["gettext-system"] }
gio = "0.20.1"
glib = "0.20.3"
glib-build-tools = "0.20.0"
gtk4 = { version = "0.9.1", features = ["v4_14"] }
ijson = "0.1.3"
image = "0.25.2"
indicatif = "0.17.8"
ink-stroke-modeler-rs = { git = "https://github.com/flxzt/ink-stroke-modeler-rs", rev = "84d311e9b0d034dcd955a1f353d37f54b2bda70f" }
itertools = "0.13.0"
kurbo = "0.11.1"
librsvg = "2.59.0"
nalgebra = { version = "0.33.0", features = ["serde-serialize"] }
notify-debouncer-full = "0.4.0"
num-derive = "0.4.2"
num-traits = "0.2.19"
numeric-sort = "0.1.1"
once_cell = "1.19"
open = "5.3"
palette = "0.7.6"
parry2d-f64 = { version = "0.17.0", features = ["serde-serialize"] }
path-absolutize = "3.1"
piet = "0.7.0"
piet-cairo = "0.7.0"
rand = "0.8.5"
rand_distr = "0.4.3"
rand_pcg = "0.3.1"
rayon = "1.10"
regex = "1.10"
rodio = { version = "0.19.0", default-features = false, features = [
"symphonia-wav",
] }
rough_piet = "0.8.0"
roughr = "0.8.0"
roxmltree = "0.20.0"
rstar = "0.12.0"
semver = { version = "1.0", features = ["serde"] }
serde = { version = "1.0", features = ["derive", "rc"] }
serde_json = "1.0"
slotmap = { version = "1.0", features = ["serde"] }
smol = "2.0"
svg = "0.18.0"
thiserror = "1.0"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
unicode-segmentation = "1.12"
url = "2.5"
usvg = "0.44.0"
winresource = "0.1.17"
xmlwriter = "0.1.0"
# Enabling feature > v20_9 causes linker errors on mingw
poppler-rs = { version = "0.24.1", features = ["v20_9"] }
[patch.crates-io]
[profile.dev]
debug = true
opt-level = 2
[profile.release]
codegen-units = 1
lto = "fat"
opt-level = 3
# We want to be able to debug in the release build as well
debug = true