diff --git a/crates/typst-cli/Cargo.toml b/crates/typst-cli/Cargo.toml index 1854e8563..c148bdb3e 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 a5bc3fdb0..7b444b9b3 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 45e64f213..28083af4c 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 8c58260ab..a7f130ec9 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 f2f05f65e..ae838f3bb 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 c1aa571ff..546afccb0 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 7ab91c1be..030f493be 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 362b58989..b2c721eb0 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 b206d8bb3..6334b67e3 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 386b1073e..006b78981 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]