mirror of
https://github.com/Myriad-Dreamin/tinymist.git
synced 2025-08-03 17:58:17 +00:00

* feat: add summary frontend * dev: init summary page * build: update cargo.lock * feat: init diagnostics frontend * build: update snapshot hash
59 lines
1.3 KiB
TOML
59 lines
1.3 KiB
TOML
[package]
|
|
name = "tinymist-query"
|
|
description = "Language queries for tinymist."
|
|
categories = ["compilers", "command-line-utilities"]
|
|
keywords = ["api", "language", "typst"]
|
|
authors.workspace = true
|
|
version.workspace = true
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
|
|
[dependencies]
|
|
|
|
anyhow.workspace = true
|
|
comemo.workspace = true
|
|
regex.workspace = true
|
|
itertools.workspace = true
|
|
lazy_static.workspace = true
|
|
strum.workspace = true
|
|
log.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
parking_lot.workspace = true
|
|
ena.workspace = true
|
|
once_cell.workspace = true
|
|
fxhash.workspace = true
|
|
toml.workspace = true
|
|
walkdir.workspace = true
|
|
indexmap.workspace = true
|
|
ecow.workspace = true
|
|
|
|
typst.workspace = true
|
|
|
|
reflexo.workspace = true
|
|
|
|
lsp-types.workspace = true
|
|
if_chain = "1"
|
|
percent-encoding = "2"
|
|
unscanny = "0.1"
|
|
pathdiff = "0.2"
|
|
ttf-parser = "0.20.0"
|
|
|
|
[dev-dependencies]
|
|
once_cell.workspace = true
|
|
insta.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
typst-ts-core = { workspace = true, default-features = false, features = [
|
|
"flat-vector",
|
|
"vector-bbox",
|
|
"no-content-hint",
|
|
] }
|
|
typst-ts-compiler.workspace = true
|
|
sha2 = { version = "0.10" }
|
|
hex = { version = "0.4" }
|
|
|
|
[lints]
|
|
workspace = true
|