summaryrefslogtreecommitdiff
path: root/cli/Cargo.toml
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2023-07-02 19:59:52 +0200
committerLaurenz <laurmaedje@gmail.com>2023-07-02 20:07:43 +0200
commitebfdb1dafa430786db10dad2ef7d5467c1bdbed1 (patch)
tree2bbc24ddb4124c4bb14dec0e536129d4de37b056 /cli/Cargo.toml
parent3ab19185093d7709f824b95b979060ce125389d8 (diff)
Move everything into `crates/` directory
Diffstat (limited to 'cli/Cargo.toml')
-rw-r--r--cli/Cargo.toml59
1 files changed, 0 insertions, 59 deletions
diff --git a/cli/Cargo.toml b/cli/Cargo.toml
deleted file mode 100644
index e8058df0..00000000
--- a/cli/Cargo.toml
+++ /dev/null
@@ -1,59 +0,0 @@
-[package]
-name = "typst-cli"
-description = "The command line interface for Typst."
-categories = ["compilers", "command-line-utilities"]
-keywords = ["typst", "cli"]
-version.workspace = true
-rust-version.workspace = true
-authors.workspace = true
-edition.workspace = true
-homepage.workspace = true
-repository.workspace = true
-license.workspace = true
-
-[[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.24", default-features = false, features = ["clock", "std"] }
-clap = { version = "4.2.4", features = ["derive", "env"] }
-codespan-reporting = "0.11"
-comemo = "0.3"
-dirs = "5"
-flate2 = "1"
-inferno = "0.11.15"
-memmap2 = "0.5"
-notify = "5"
-once_cell = "1"
-open = "4.0.2"
-same-file = "1"
-siphasher = "0.3"
-tar = "0.4"
-tempfile = "3.5.0"
-tracing = "0.1.37"
-tracing-error = "0.2"
-tracing-flame = "0.2.0"
-tracing-subscriber = "0.3.17"
-ureq = "2"
-walkdir = "2"
-
-[build-dependencies]
-clap = { version = "4.2.4", features = ["derive", "string"] }
-clap_complete = "4.2.1"
-clap_mangen = "0.2.10"
-
-[features]
-default = ["embed-fonts"]
-
-# Embeds some fonts into the binary:
-# - For text: Linux Libertine, New Computer Modern
-# - For math: New Computer Modern Math
-# - For code: Deja Vu Sans Mono
-embed-fonts = []