mirror of
https://github.com/typst/typst
synced 2025-05-13 12:36:23 +08:00
This removes the not-really-cyclic dependency that confuses rust-analyzer. See also: https://github.com/rust-lang/rust-analyzer/issues/2414
30 lines
549 B
TOML
30 lines
549 B
TOML
[package]
|
|
name = "typst-cli"
|
|
version = "0.1.0"
|
|
authors = ["The Typst Project Developers"]
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "typst"
|
|
path = "src/main.rs"
|
|
test = false
|
|
doctest = false
|
|
bench = false
|
|
doc = false
|
|
|
|
[dependencies]
|
|
typst = { path = ".." }
|
|
typst-library = { path = "../library" }
|
|
chrono = { version = "0.4", default-features = false, features = ["clock", "std"] }
|
|
codespan-reporting = "0.11"
|
|
comemo = "0.1"
|
|
dirs = "4"
|
|
elsa = "1.7"
|
|
memmap2 = "0.5"
|
|
notify = "5"
|
|
once_cell = "1"
|
|
pico-args = "0.4"
|
|
same-file = "1"
|
|
siphasher = "0.3"
|
|
walkdir = "2"
|