24 lines
492 B
TOML
24 lines
492 B
TOML
[workspace]
|
|
members = ["crates/*", "tests"]
|
|
default-members = ["crates/typst-cli"]
|
|
|
|
[workspace.package]
|
|
version = "0.6.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
|