From 1dcc37bad87d4ef5f31ede5a1e6e5f7a74b4069c Mon Sep 17 00:00:00 2001 From: Alex Dukhno <5074607+alex-dukhno@users.noreply.github.com> Date: Thu, 22 Oct 2020 20:06:23 +0300 Subject: [PATCH] added metadata to Cargo.toml for crate publishing (#4) --- .github/workflows/release.yml | 1 + Cargo.toml | 8 ++++++++ 2 files changed, 9 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2fee6ec..2d2fc37 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,6 +16,7 @@ jobs: build: runs-on: ubuntu-latest steps: + - uses: actions/checkout@v2 - uses: actions-rs/cargo@v1 with: command: publish diff --git a/Cargo.toml b/Cargo.toml index a9aa17d..b610cd5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,8 +1,16 @@ [package] name = "pg_wire" version = "0.1.0" +description = "Server Side implementation of PostgreSQL Wire Protocol" +license-file = "LICENSE" +repository = "https://github.com/alex-dukhno/pg_wire" +keywords = ["protocol", "postgresql", "postgres", "database"] authors = ["Alex Dukhno "] edition = "2018" +include = [ + "src/**/*.rs", + "Cargo.toml", +] [dependencies] log = "0.4.11"