typst/Cargo.toml

25 lines
507 B
TOML
Raw Normal View History

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