diff options
| author | Laurenz <laurmaedje@gmail.com> | 2024-10-27 19:04:55 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-27 18:04:55 +0000 |
| commit | be7cfc85d08c545abfac08098b7b33b4bd71f37e (patch) | |
| tree | f4137fa2aaa57babae1f7603a9b2ed7e688f43d8 /Cargo.toml | |
| parent | b8034a343831e8609aec2ec81eb7eeda57aa5d81 (diff) | |
Split out four new crates (#5302)
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -18,10 +18,14 @@ readme = "README.md" [workspace.dependencies] typst = { path = "crates/typst", version = "0.12.0" } typst-cli = { path = "crates/typst-cli", version = "0.12.0" } +typst-eval = { path = "crates/typst-eval", version = "0.12.0" } typst-ide = { path = "crates/typst-ide", version = "0.12.0" } typst-kit = { path = "crates/typst-kit", version = "0.12.0" } +typst-layout = { path = "crates/typst-layout", version = "0.12.0" } +typst-library = { path = "crates/typst-library", version = "0.12.0" } typst-macros = { path = "crates/typst-macros", version = "0.12.0" } typst-pdf = { path = "crates/typst-pdf", version = "0.12.0" } +typst-realize = { path = "crates/typst-realize", version = "0.12.0" } typst-render = { path = "crates/typst-render", version = "0.12.0" } typst-svg = { path = "crates/typst-svg", version = "0.12.0" } typst-syntax = { path = "crates/typst-syntax", version = "0.12.0" } @@ -145,5 +149,8 @@ strip = true [workspace.lints.clippy] blocks_in_conditions = "allow" +comparison_chain = "allow" +manual_range_contains = "allow" mutable_key_type = "allow" uninlined_format_args = "warn" +wildcard_in_or_patterns = "allow" |
