summaryrefslogtreecommitdiff
path: root/crates/typst-docs
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-docs
parent7f1c38548a89e2dd7c88d842532432dfa953c091 (diff)
Switch to workspace dependencies
Diffstat (limited to 'crates/typst-docs')
-rw-r--r--crates/typst-docs/Cargo.toml30
1 files changed, 15 insertions, 15 deletions
diff --git a/crates/typst-docs/Cargo.toml b/crates/typst-docs/Cargo.toml
index 02d238ed..b2e82e43 100644
--- a/crates/typst-docs/Cargo.toml
+++ b/crates/typst-docs/Cargo.toml
@@ -11,18 +11,18 @@ doctest = false
bench = false
[dependencies]
-typst = { path = "../typst" }
-typst-library = { path = "../typst-library" }
-comemo = "0.3"
-ecow = { version = "0.2", features = ["serde"] }
-heck = "0.4"
-include_dir = "0.7"
-once_cell = "1"
-pulldown-cmark = "0.9"
-serde = { version = "1.0.184", features = ["derive"] }
-serde_yaml = "0.9"
-syntect = { version = "5", default-features = false, features = ["parsing", "html", "regex-fancy"] }
-typed-arena = "2"
-unicode_names2 = "0.6.0"
-unscanny = "0.1"
-yaml-front-matter = "0.1"
+typst = { workspace = true }
+typst-library = { workspace = true }
+comemo = { workspace = true }
+ecow = { workspace = true }
+heck = { workspace = true }
+include_dir = { workspace = true }
+once_cell = { workspace = true }
+pulldown-cmark = { workspace = true }
+serde = { workspace = true }
+serde_yaml = { workspace = true }
+syntect = { workspace = true, features = ["html"] }
+typed-arena = { workspace = true }
+unicode_names2 = { workspace = true }
+unscanny = { workspace = true }
+yaml-front-matter = { workspace = true }