Publish `pathfinder_text` to crates.io

This commit is contained in:
Patrick Walton 2020-04-17 13:42:25 -07:00
parent 1cd5966d3d
commit 686773224c
3 changed files with 311 additions and 330 deletions

625
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -66,4 +66,5 @@ default-members = [
] ]
[patch.crates-io] [patch.crates-io]
pathfinder_geometry = { path = "geometry" }
pathfinder_simd = { path = "simd" } pathfinder_simd = { path = "simd" }

View File

@ -1,22 +1,27 @@
[package] [package]
name = "pathfinder_text" name = "pathfinder_text"
version = "0.1.0" version = "0.5.0"
authors = ["Patrick Walton <pcwalton@mimiga.net>"]
edition = "2018" edition = "2018"
authors = ["Patrick Walton <pcwalton@mimiga.net>"]
description = "Text layout for the Pathfinder vector graphics renderer"
license = "MIT/Apache-2.0"
repository = "https://github.com/servo/pathfinder"
homepage = "https://github.com/servo/pathfinder"
[dependencies] [dependencies]
euclid = "0.20"
font-kit = "0.6" font-kit = "0.6"
[dependencies.pathfinder_content] [dependencies.pathfinder_content]
path = "../content" path = "../content"
version = "0.5"
[dependencies.pathfinder_geometry] [dependencies.pathfinder_geometry]
path = "../geometry" path = "../geometry"
version = "0.5"
[dependencies.pathfinder_renderer] [dependencies.pathfinder_renderer]
path = "../renderer" path = "../renderer"
version = "0.5"
[dependencies.skribo] [dependencies.skribo]
git = "https://github.com/linebender/skribo.git" version = "0.1"
rev = "85293c3b3d7bbd7fc6b8fbfb732bc9450904211f"