mirror of
https://github.com/Myriad-Dreamin/tinymist.git
synced 2025-08-04 10:18:16 +00:00

* refactor: a bit * fix: named completion * dev: replace complete_literal by complete_type * dev: remove unused code * dev: basic interner * dev: basic types * dev: type operations * dev: migrate all type definitions * dev: check syntax and builtin types * dev: make TypeSimplifier simply work * dev: make TypeDescriber simply work * dev: make TypeChecker simply work * dev: recover type check * fix: context check * fix: use after free in seen fields * fix: typed with * fix: record type on field * dev: check type of constructors and element containing * dev: show sig by type * fix: mixed context checking * QAQ * >_< * dev: fix documents
69 lines
1.6 KiB
TOML
69 lines
1.6 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
|
|
yaml-rust2.workspace = true
|
|
biblatex.workspace = true
|
|
serde_yaml.workspace = true
|
|
itertools.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
|
|
siphasher.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"
|
|
rust_iso639 = "0.0.1"
|
|
rust_iso3166 = "0.1.4"
|
|
|
|
# We need to freeze the version of the crate, as the raw-api feature is considered unstable
|
|
dashmap.workspace = true
|
|
hashbrown.workspace = true
|
|
triomphe.workspace = true
|
|
|
|
[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
|