Skip to content

Commit

Permalink
Cargo.toml: Change to single line, newlines at EOF
Browse files Browse the repository at this point in the history
  • Loading branch information
mrgalopes committed Nov 8, 2023
1 parent 305cc0e commit dd2f2d8
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 16 deletions.
6 changes: 2 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,9 @@ resolver = "2"

[workspace.package]
version = "0.9.0"
authors = [
"Martin Haug <[email protected]>",
"Laurenz Stampfl <[email protected]>",
]
authors = ["Martin Haug <[email protected]>", "Laurenz Stampfl <[email protected]>"]
edition = "2021"
repository = "https://github.com/typst/svg2pdf"
readme = "README.md"
license = "MIT OR Apache-2.0"

9 changes: 3 additions & 6 deletions crates/svg2pdf-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,13 @@ svg2pdf = { path = "../svg2pdf" }
miniz_oxide = "0.7"
pdf-writer = "0.9"
usvg = { version = "0.36", default-features = false, features = ["text"] }
image = { version = "0.24", default-features = false, features = [
"jpeg",
"png",
"gif",
] }
image = { version = "0.24", default-features = false, features = ["jpeg", "png", "gif"] }
termcolor = { version = "1" }
clap = { version = "4.4.2", features = ["derive"] }
fontdb = { version = "0.15" }

[build-dependencies]
clap = { version = "4.4.2", features = ["derive", "string"] }
clap_complete = "4.4.3"
clap_mangen = "0.2.14"
clap_mangen = "0.2.14"

9 changes: 3 additions & 6 deletions crates/svg2pdf/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,8 @@ image = ["dep:image"]
miniz_oxide = "0.7"
pdf-writer = "0.9"
usvg = { version = "0.36", default-features = false }
image = { version = "0.24", default-features = false, features = [
"jpeg",
"png",
"gif",
], optional = true }
image = { version = "0.24", default-features = false, features = ["jpeg", "png", "gif"], optional = true }

[dev-dependencies]
usvg = { version = "0.36.0" }
usvg = { version = "0.36.0" }

0 comments on commit dd2f2d8

Please sign in to comment.