diff options
| author | Laurenz <laurmaedje@gmail.com> | 2023-11-27 16:54:55 +0100 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2023-11-27 16:54:55 +0100 |
| commit | 713cde11364121e2071dde45138ae560e3b8fe41 (patch) | |
| tree | ad4afd66bdbaabf67af880d43704be2149f453b6 | |
| parent | 18a5e2eb12e6a0c1eed42a1b84852036029f0e7f (diff) | |
Make workspace inheriting consistent
| -rw-r--r-- | crates/typst-cli/Cargo.toml | 14 | ||||
| -rw-r--r-- | crates/typst-docs/Cargo.toml | 8 | ||||
| -rw-r--r-- | crates/typst-ide/Cargo.toml | 18 | ||||
| -rw-r--r-- | crates/typst-macros/Cargo.toml | 18 | ||||
| -rw-r--r-- | crates/typst-pdf/Cargo.toml | 18 | ||||
| -rw-r--r-- | crates/typst-render/Cargo.toml | 18 | ||||
| -rw-r--r-- | crates/typst-svg/Cargo.toml | 18 | ||||
| -rw-r--r-- | crates/typst-syntax/Cargo.toml | 18 | ||||
| -rw-r--r-- | crates/typst/Cargo.toml | 14 | ||||
| -rw-r--r-- | tests/Cargo.toml | 8 |
10 files changed, 76 insertions, 76 deletions
diff --git a/crates/typst-cli/Cargo.toml b/crates/typst-cli/Cargo.toml index 1854e856..c148bdb3 100644 --- a/crates/typst-cli/Cargo.toml +++ b/crates/typst-cli/Cargo.toml @@ -3,13 +3,13 @@ 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 +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" diff --git a/crates/typst-docs/Cargo.toml b/crates/typst-docs/Cargo.toml index a5bc3fdb..7b444b9b 100644 --- a/crates/typst-docs/Cargo.toml +++ b/crates/typst-docs/Cargo.toml @@ -1,9 +1,9 @@ [package] name = "typst-docs" -version.workspace = true -rust-version.workspace = true -authors.workspace = true -edition.workspace = true +version = { workspace = true } +rust-version = { workspace = true } +authors = { workspace = true } +edition = { workspace = true } publish = false [lib] diff --git a/crates/typst-ide/Cargo.toml b/crates/typst-ide/Cargo.toml index 45e64f21..28083af4 100644 --- a/crates/typst-ide/Cargo.toml +++ b/crates/typst-ide/Cargo.toml @@ -1,15 +1,15 @@ [package] name = "typst-ide" description = "IDE functionality for Typst." -version.workspace = true -rust-version.workspace = true -authors.workspace = true -edition.workspace = true -homepage.workspace = true -repository.workspace = true -license.workspace = true -categories.workspace = true -keywords.workspace = true +version = { workspace = true } +rust-version = { workspace = true } +authors = { workspace = true } +edition = { workspace = true } +homepage = { workspace = true } +repository = { workspace = true } +license = { workspace = true } +categories = { workspace = true } +keywords = { workspace = true } [lib] test = false diff --git a/crates/typst-macros/Cargo.toml b/crates/typst-macros/Cargo.toml index 8c58260a..a7f130ec 100644 --- a/crates/typst-macros/Cargo.toml +++ b/crates/typst-macros/Cargo.toml @@ -1,15 +1,15 @@ [package] name = "typst-macros" description = "Proc-macros for Typst." -version.workspace = true -rust-version.workspace = true -authors.workspace = true -edition.workspace = true -homepage.workspace = true -repository.workspace = true -license.workspace = true -categories.workspace = true -keywords.workspace = true +version = { workspace = true } +rust-version = { workspace = true } +authors = { workspace = true } +edition = { workspace = true } +homepage = { workspace = true } +repository = { workspace = true } +license = { workspace = true } +categories = { workspace = true } +keywords = { workspace = true } [lib] proc-macro = true diff --git a/crates/typst-pdf/Cargo.toml b/crates/typst-pdf/Cargo.toml index f2f05f65..ae838f3b 100644 --- a/crates/typst-pdf/Cargo.toml +++ b/crates/typst-pdf/Cargo.toml @@ -1,15 +1,15 @@ [package] name = "typst-pdf" description = "PDF exporter for Typst." -version.workspace = true -rust-version.workspace = true -authors.workspace = true -edition.workspace = true -homepage.workspace = true -repository.workspace = true -license.workspace = true -categories.workspace = true -keywords.workspace = true +version = { workspace = true } +rust-version = { workspace = true } +authors = { workspace = true } +edition = { workspace = true } +homepage = { workspace = true } +repository = { workspace = true } +license = { workspace = true } +categories = { workspace = true } +keywords = { workspace = true } [lib] doctest = false diff --git a/crates/typst-render/Cargo.toml b/crates/typst-render/Cargo.toml index c1aa571f..546afccb 100644 --- a/crates/typst-render/Cargo.toml +++ b/crates/typst-render/Cargo.toml @@ -1,15 +1,15 @@ [package] name = "typst-render" description = "Raster image exporter for Typst." -version.workspace = true -rust-version.workspace = true -authors.workspace = true -edition.workspace = true -homepage.workspace = true -repository.workspace = true -license.workspace = true -categories.workspace = true -keywords.workspace = true +version = { workspace = true } +rust-version = { workspace = true } +authors = { workspace = true } +edition = { workspace = true } +homepage = { workspace = true } +repository = { workspace = true } +license = { workspace = true } +categories = { workspace = true } +keywords = { workspace = true } [lib] doctest = false diff --git a/crates/typst-svg/Cargo.toml b/crates/typst-svg/Cargo.toml index 7ab91c1b..030f493b 100644 --- a/crates/typst-svg/Cargo.toml +++ b/crates/typst-svg/Cargo.toml @@ -1,15 +1,15 @@ [package] name = "typst-svg" description = "SVG exporter for Typst." -version.workspace = true -rust-version.workspace = true -authors.workspace = true -edition.workspace = true -homepage.workspace = true -repository.workspace = true -license.workspace = true -categories.workspace = true -keywords.workspace = true +version = { workspace = true } +rust-version = { workspace = true } +authors = { workspace = true } +edition = { workspace = true } +homepage = { workspace = true } +repository = { workspace = true } +license = { workspace = true } +categories = { workspace = true } +keywords = { workspace = true } [lib] doctest = false diff --git a/crates/typst-syntax/Cargo.toml b/crates/typst-syntax/Cargo.toml index 362b5898..b2c721eb 100644 --- a/crates/typst-syntax/Cargo.toml +++ b/crates/typst-syntax/Cargo.toml @@ -1,15 +1,15 @@ [package] name = "typst-syntax" description = "Parser and syntax tree for Typst." -version.workspace = true -rust-version.workspace = true -authors.workspace = true -edition.workspace = true -homepage.workspace = true -repository.workspace = true -license.workspace = true -categories.workspace = true -keywords.workspace = true +version = { workspace = true } +rust-version = { workspace = true } +authors = { workspace = true } +edition = { workspace = true } +homepage = { workspace = true } +repository = { workspace = true } +license = { workspace = true } +categories = { workspace = true } +keywords = { workspace = true } [lib] doctest = false diff --git a/crates/typst/Cargo.toml b/crates/typst/Cargo.toml index b206d8bb..6334b67e 100644 --- a/crates/typst/Cargo.toml +++ b/crates/typst/Cargo.toml @@ -3,13 +3,13 @@ name = "typst" description = "A new markup-based typesetting system that is powerful and easy to learn." categories = ["compilers", "science"] keywords = ["markup", "typesetting", "typst"] -version.workspace = true -rust-version.workspace = true -authors.workspace = true -edition.workspace = true -homepage.workspace = true -repository.workspace = true -license.workspace = true +version = { workspace = true } +rust-version = { workspace = true } +authors = { workspace = true } +edition = { workspace = true } +homepage = { workspace = true } +repository = { workspace = true } +license = { workspace = true } [lib] doctest = false diff --git a/tests/Cargo.toml b/tests/Cargo.toml index 386b1073..006b7898 100644 --- a/tests/Cargo.toml +++ b/tests/Cargo.toml @@ -1,9 +1,9 @@ [package] name = "typst-tests" -version.workspace = true -rust-version.workspace = true -authors.workspace = true -edition.workspace = true +version = { workspace = true } +rust-version = { workspace = true } +authors = { workspace = true } +edition = { workspace = true } publish = false [dev-dependencies] |
