Files
obsidian-typst/compiler/Cargo.toml
2023-11-01 19:52:39 +00:00

40 lines
859 B
TOML

[package]
name = "obsidian-typst"
version = "0.7.1"
authors = ["fenjalien"]
edition = "2021"
description = "Renders `typst` code blocks to images with Typst."
readme = "README.md"
rust-version = "1.70"
[lib]
crate-type = ["cdylib"]
[dependencies]
# Everything to do with Typst
typst = { git = "https://github.com/typst/typst.git", tag = "v0.9.0" }
typst-library = { git = "https://github.com/typst/typst.git", tag = "v0.9.0" }
comemo = "0.3"
# Everything to do with wasm
wasm-bindgen = "^0.2"
js-sys = "^0.3"
wasm-bindgen-futures = "^0.4"
serde = { version = "1", features = ["derive"] }
serde-wasm-bindgen = "^0.6"
web-sys = { version = "^0.3", features = [
"console",
"Window",
"FontData",
"Blob",
"ImageData",
] }
console_error_panic_hook = "0.1.7"
# Image handling
fast_image_resize = "2.7.3"
ariadne = "0.3.0"
chrono = "0.4.30"