summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: e65fd54d7147d80c76ce0af2e25cb9bb9268c8c7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[workspace]
members = ["crates/*", "tests"]
default-members = ["crates/typst-cli"]

[workspace.package]
version = "0.7.0"
rust-version = "1.70" # also change in ci.yml
authors = ["The Typst Project Developers"]
edition = "2021"
homepage = "https://typst.app"
repository = "https://github.com/typst/typst"
readme = "README.md"
license = "Apache-2.0"

[profile.dev.package."*"]
opt-level = 2

[profile.release]
lto = "thin"
codegen-units = 1

[profile.release.package."typst-cli"]
strip = true