-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
100 lines (86 loc) · 2.13 KB
/
Copy pathCargo.toml
File metadata and controls
100 lines (86 loc) · 2.13 KB
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
[package]
name = "samaku"
version = "0.1.0"
edition = "2024"
rust-version = "1.97"
description = "Node-based editor for typesetting of ASS subtitles"
repository = "https://github.com/meew0/samaku"
readme = "README.md"
license = "GPL-3.0-or-later"
keywords = ["ass", "subtitle"]
categories = ["multimedia"]
publish = false
[lib]
bench = false
[dependencies]
# GUI
iced = { version = "0.14.0", default-features = false, features = [
# Default features
"wgpu",
# "tiny-skia",
"crisp",
# "web-colors",
"thread-pool",
"linux-theme-detection",
"x11",
"wayland",
#
# Non-default features
"advanced",
"canvas",
# `image` would additionally enable `image/default`, pulling in every codec the `image` crate
# supports (including AVIF encoding via `rav1e`). We only ever construct handles from raw RGBA.
"image-without-codecs",
"lazy",
"smol",
] }
iced_aw = { version = "0.14.1", default-features = false, features = ["menu"] }
iced_nodegraph = "0.4.2"
rfd = "0.17.2"
smol = "2.0"
# Media libraries
ffms2-sys = "0.3"
libass-sys = { version = "0.1.0", path = "libass-sys" }
libmv-capi-sys = { version = "0.2.0", default-features = false, features = ["track-region"] }
cpal = "0.18"
# FFI utilities
libc = "0.2.186"
vsprintf = "2.0.0"
# Various data structures and utilities
interavl = "0.6"
indexmap = "2.14"
smallvec = "2.0.0-alpha.12"
fast-float2 = "0.2"
glam = { version = "0.33", features = ["serde"] }
# dtolnay collection
thiserror = "2.0"
anyhow = "1.0"
inventory = "0.3"
dyn-clone = "1.0"
colorous = "1.0"
# Serialization & deserialization
serde = "1.0.228"
typetag = "0.2.21"
ciborium = "0.2.2"
data-encoding = "2.11"
miniz_oxide = "0.9"
# Font metric parsing (used by nde::util::measure to read OS/2 Win metrics)
ttf-parser = { version = "0.25.1", default-features = false }
[dev-dependencies]
# Test dependencies
iced_test = "0.14"
assert_matches2 = "0.1.2"
assert_float_eq = "1.2.0"
# Benchmark dependencies
criterion = "0.8"
rand = "0.10"
rand_pcg = "0.10"
[[bench]]
name = "main"
harness = false
[profile.bench]
opt-level = 3
debug = 2
debug-assertions = false
lto = "thin"
codegen-units = 1