From d9a93a102c942e991038f0c3741e3d455b7914ad Mon Sep 17 00:00:00 2001 From: Patrick Walton Date: Fri, 17 Apr 2020 13:54:26 -0700 Subject: [PATCH] Publish `pathfinder_svg` to crates.io --- Cargo.lock | 8 ++++---- svg/Cargo.toml | 11 ++++++++++- 2 files changed, 14 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 084c7047..ebf954e0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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)", diff --git a/svg/Cargo.toml b/svg/Cargo.toml index 2b63524d..ff3fe4a6 100644 --- a/svg/Cargo.toml +++ b/svg/Cargo.toml @@ -1,8 +1,13 @@ [package] name = "pathfinder_svg" -version = "0.1.0" +version = "0.5.0" edition = "2018" authors = ["Patrick Walton "] +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"