-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
66 lines (52 loc) · 1.48 KB
/
Cargo.toml
File metadata and controls
66 lines (52 loc) · 1.48 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
[package]
name = "runebender"
version = "0.1.0"
edition = "2024"
rust-version = "1.88"
authors = ["Eli Heuer <elih@protonmail.com>"]
license = "Apache-2.0"
description = "Runebender Xilem - A font editor written in Rust using Xilem"
repository = "https://github.com/eliheuer/runebender-xilem"
[[bin]]
name = "runebender"
path = "src/main.rs"
[dependencies]
# UI
xilem = "0.4"
masonry = "0.4"
winit = "0.30"
# Font/UFO handling
norad = "0.13"
# Linebender ecosystem
kurbo = "0.12"
kurbo_09 = { package = "kurbo", version = "0.9.5" }
parley = "0.6"
peniko = "0.5"
spline = { git = "https://github.com/linebender/spline" }
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.8"
# Unicode
unicode-general-category = "0.6"
# Image loading
image = { version = "0.25", default-features = false, features = ["png", "jpeg"] }
# Image tracing (bitmap → bezier contours)
# TODO: switch to crates.io version once img2bez is published.
img2bez = { path = "../img2bez", default-features = false }
# QuiverAI vectorization (optional cloud-based alternative to img2bez)
reqwest = { version = "0.12", features = ["blocking", "json", "multipart"] }
base64 = "0.22"
# Boolean path operations (remove overlap, union, subtract, etc.)
linesweeper = "0.2"
# Utilities
anyhow = "1.0"
chrono = "0.4"
thiserror = "1.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# File watching
notify = "8"
# File dialogs
rfd = "0.15"
[dev-dependencies]