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"