From 586d974b7d30adc8bd0f39f57955d1f95bc7c785 Mon Sep 17 00:00:00 2001 From: Patrick Walton Date: Sun, 10 Nov 2019 10:32:41 -0800 Subject: [PATCH] Update `Cargo.toml`s in preparation for publishing SIMD and geometry --- geometry/Cargo.toml | 4 ++++ simd/Cargo.toml | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/geometry/Cargo.toml b/geometry/Cargo.toml index 8136c255..22187cd0 100644 --- a/geometry/Cargo.toml +++ b/geometry/Cargo.toml @@ -3,6 +3,10 @@ name = "pathfinder_geometry" version = "0.3.0" edition = "2018" authors = ["Patrick Walton "] +description = "Basic SIMD-accelerated geometry/linear algebra" +license = "MIT/Apache-2.0" +repository = "https://github.com/servo/pathfinder" +homepage = "https://github.com/servo/pathfinder" [dependencies] diff --git a/simd/Cargo.toml b/simd/Cargo.toml index 923dd7a5..ca30b508 100644 --- a/simd/Cargo.toml +++ b/simd/Cargo.toml @@ -4,6 +4,10 @@ version = "0.3.0" edition = "2018" authors = ["Patrick Walton "] build = "build.rs" +description = "A simple SIMD library" +license = "MIT/Apache-2.0" +repository = "https://github.com/servo/pathfinder" +homepage = "https://github.com/servo/pathfinder" [features] pf-no-simd = []