Publish `pathfinder_svg` to crates.io

This commit is contained in:
Patrick Walton 2020-04-17 13:54:26 -07:00
parent ef20671ab7
commit d9a93a102c
2 changed files with 14 additions and 5 deletions

8
Cargo.lock generated
View File

@ -442,7 +442,7 @@ name = "convert"
version = "0.1.0"
dependencies = [
"pathfinder_export 0.1.0",
"pathfinder_svg 0.1.0",
"pathfinder_svg 0.5.0",
"usvg 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
@ -1616,7 +1616,7 @@ dependencies = [
"pathfinder_renderer 0.5.0",
"pathfinder_resources 0.5.0",
"pathfinder_simd 0.5.0",
"pathfinder_svg 0.1.0",
"pathfinder_svg 0.5.0",
"pathfinder_ui 0.5.0",
"rayon 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
"usvg 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
@ -1692,7 +1692,7 @@ dependencies = [
"pathfinder_gpu 0.5.0",
"pathfinder_renderer 0.5.0",
"pathfinder_simd 0.5.0",
"pathfinder_svg 0.1.0",
"pathfinder_svg 0.5.0",
"pathfinder_ui 0.5.0",
"rayon 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
"smallvec 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
@ -1756,7 +1756,7 @@ dependencies = [
[[package]]
name = "pathfinder_svg"
version = "0.1.0"
version = "0.5.0"
dependencies = [
"bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
"hashbrown 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)",

View File

@ -1,8 +1,13 @@
[package]
name = "pathfinder_svg"
version = "0.1.0"
version = "0.5.0"
edition = "2018"
authors = ["Patrick Walton <pcwalton@mimiga.net>"]
description = "A GPU-accelerated SVG renderer"
license = "MIT/Apache-2.0"
repository = "https://github.com/servo/pathfinder"
homepage = "https://github.com/servo/pathfinder"
keywords = ["pathfinder", "svg", "vector", "graphics", "gpu"]
[dependencies]
bitflags = "1.0"
@ -11,12 +16,16 @@ usvg = "0.9"
[dependencies.pathfinder_color]
path = "../color"
version = "0.5"
[dependencies.pathfinder_content]
path = "../content"
version = "0.5"
[dependencies.pathfinder_geometry]
path = "../geometry"
version = "0.5"
[dependencies.pathfinder_renderer]
path = "../renderer"
version = "0.5"