-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (28 loc) · 868 Bytes
/
Copy pathCargo.toml
File metadata and controls
33 lines (28 loc) · 868 Bytes
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
[package]
name = "resume-pipeline"
version = "1.4.3"
description = "create multiple resumes from a YAML source"
authors = ["cntrvsy <benintangana@gmail.com>"]
license = "MIT"
edition = "2024"
[dependencies]
crossterm = "0.28.1"
ratatui = "0.28.0"
color-eyre = "0.6.3"
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
serde_json = "1.0"
# --- TYPST CORE DEPS ---
typst = "0.12.0" # Core compiler
typst-pdf = "0.12.0" # PDF exporter
time = "0.3" # Required for the 'World' environment
comemo = "0.4" # Typst's caching system
bytes = "1.0" # For handling embedded font buffers
# Remove typst-as-lib
# Remove typst-kit
# Read the optimization guideline for more details: https://ratatui.rs/recipes/apps/release-your-app/#optimizations
[profile.release]
codegen-units = 1
lto = true
opt-level = "s"
strip = true