diff options
| author | Laurenz <laurmaedje@gmail.com> | 2023-11-08 12:56:35 +0100 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2023-11-08 12:56:35 +0100 |
| commit | 4794bd35fabaf79c2ff550202fa8a4b55dbafc9c (patch) | |
| tree | 5020bdb0b956019628cffb086bc0d3fb49e618a8 /crates/typst-syntax | |
| parent | 7f1c38548a89e2dd7c88d842532432dfa953c091 (diff) | |
Switch to workspace dependencies
Diffstat (limited to 'crates/typst-syntax')
| -rw-r--r-- | crates/typst-syntax/Cargo.toml | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/crates/typst-syntax/Cargo.toml b/crates/typst-syntax/Cargo.toml index ae13bcd5..1254e663 100644 --- a/crates/typst-syntax/Cargo.toml +++ b/crates/typst-syntax/Cargo.toml @@ -1,8 +1,6 @@ [package] name = "typst-syntax" description = "Parser and syntax tree for Typst." -categories = ["compilers", "science"] -keywords = ["typst"] version.workspace = true rust-version.workspace = true authors.workspace = true @@ -10,18 +8,20 @@ edition.workspace = true homepage.workspace = true repository.workspace = true license.workspace = true +categories.workspace = true +keywords.workspace = true [lib] doctest = false bench = false [dependencies] -comemo = "0.3" -ecow = { version = "0.2", features = ["serde"] } -once_cell = "1" -serde = { version = "1.0.184", features = ["derive"] } -tracing = "0.1.37" -unicode-ident = "1.0" -unicode-math-class = "0.1" -unicode-segmentation = "1" -unscanny = "0.1" +comemo = { workspace = true } +ecow = { workspace = true } +once_cell = { workspace = true } +serde = { workspace = true } +tracing = { workspace = true } +unicode-ident = { workspace = true } +unicode-math-class = { workspace = true } +unicode-segmentation = { workspace = true } +unscanny = { workspace = true } |
