typst/Cargo.toml

25 lines
507 B
TOML
Raw Normal View History

[workspace]
members = ["crates/*", "tests"]
default-members = ["crates/typst-cli"]
2023-08-25 15:57:15 +00:00
resolver = "2"
[workspace.package]
2023-10-31 00:36:21 +00:00
version = "0.9.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"
2023-05-20 19:56:19 +00:00
2022-01-24 15:38:34 +00:00
[profile.dev.package."*"]
2022-11-03 10:44:53 +00:00
opt-level = 2
2023-03-29 21:13:03 +00:00
[profile.release]
lto = "thin"
codegen-units = 1
[profile.release.package."typst-cli"]
strip = true