summaryrefslogtreecommitdiff
path: root/crates/typst-ide
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2023-11-08 12:56:35 +0100
committerLaurenz <laurmaedje@gmail.com>2023-11-08 12:56:35 +0100
commit4794bd35fabaf79c2ff550202fa8a4b55dbafc9c (patch)
tree5020bdb0b956019628cffb086bc0d3fb49e618a8 /crates/typst-ide
parent7f1c38548a89e2dd7c88d842532432dfa953c091 (diff)
Switch to workspace dependencies
Diffstat (limited to 'crates/typst-ide')
-rw-r--r--crates/typst-ide/Cargo.toml18
1 files changed, 9 insertions, 9 deletions
diff --git a/crates/typst-ide/Cargo.toml b/crates/typst-ide/Cargo.toml
index 410b6f67..f7b07296 100644
--- a/crates/typst-ide/Cargo.toml
+++ b/crates/typst-ide/Cargo.toml
@@ -1,8 +1,6 @@
[package]
name = "typst-ide"
description = "IDE functionality for Typst."
-categories = ["compilers", "science"]
-keywords = ["typst"]
version.workspace = true
rust-version.workspace = true
authors.workspace = true
@@ -10,6 +8,8 @@ edition.workspace = true
homepage.workspace = true
repository.workspace = true
license.workspace = true
+categories.workspace = true
+keywords.workspace = true
[lib]
test = false
@@ -17,10 +17,10 @@ doctest = false
bench = false
[dependencies]
-typst = { path = "../typst" }
-comemo = "0.3"
-ecow = { version = "0.2", features = ["serde"] }
-if_chain = "1"
-log = "0.4"
-serde = { version = "1.0.184", features = ["derive"] }
-unscanny = "0.1"
+typst = { workspace = true }
+comemo = { workspace = true }
+ecow = { workspace = true }
+if_chain = { workspace = true }
+log = { workspace = true }
+serde = { workspace = true }
+unscanny = { workspace = true }