From ef98ff2828d94812d08643ae6fc59757f6bd4996 Mon Sep 17 00:00:00 2001 From: Ryan Leckey Date: Sat, 28 Dec 2019 00:25:04 -0800 Subject: [PATCH] Add repo/desc to sub crates --- sqlx-core/Cargo.toml | 2 ++ sqlx-macros/Cargo.toml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/sqlx-core/Cargo.toml b/sqlx-core/Cargo.toml index e003fdeb..69ff2854 100644 --- a/sqlx-core/Cargo.toml +++ b/sqlx-core/Cargo.toml @@ -1,6 +1,8 @@ [package] name = "sqlx-core" version = "0.1.0-pre" +repository = "https://github.com/launchbadge/sqlx" +description = "Core of SQLx, the rust SQL toolkit. Not intended to be used directly." license = "MIT OR Apache-2.0" edition = "2018" authors = [ diff --git a/sqlx-macros/Cargo.toml b/sqlx-macros/Cargo.toml index 3a21d229..3ea778e9 100644 --- a/sqlx-macros/Cargo.toml +++ b/sqlx-macros/Cargo.toml @@ -1,6 +1,8 @@ [package] name = "sqlx-macros" version = "0.1.0-pre" +repository = "https://github.com/launchbadge/sqlx" +description = "Macros for SQLx, the rust SQL toolkit. Not intended to be used directly." edition = "2018" authors = [ "Ryan Leckey ",