diff options
Diffstat (limited to 'crates/typst-eval/Cargo.toml')
| -rw-r--r-- | crates/typst-eval/Cargo.toml | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/crates/typst-eval/Cargo.toml b/crates/typst-eval/Cargo.toml new file mode 100644 index 00000000..12a6a6a4 --- /dev/null +++ b/crates/typst-eval/Cargo.toml @@ -0,0 +1,32 @@ +[package] +name = "typst-eval" +description = "Typst's code interpreter." +version = { workspace = true } +rust-version = { workspace = true } +authors = { workspace = true } +edition = { workspace = true } +homepage = { workspace = true } +repository = { workspace = true } +license = { workspace = true } +categories = { workspace = true } +keywords = { workspace = true } +readme = { workspace = true } + +[dependencies] +typst-library = { workspace = true } +typst-macros = { workspace = true } +typst-syntax = { workspace = true } +typst-timing = { workspace = true } +typst-utils = { workspace = true } +comemo = { workspace = true } +ecow = { workspace = true } +if_chain = { workspace = true } +indexmap = { workspace = true } +toml = { workspace = true } +unicode-segmentation = { workspace = true } + +[target.'cfg(not(target_arch = "wasm32"))'.dependencies] +stacker = { workspace = true } + +[lints] +workspace = true |
