From 4edf49255e16b6a0bb83306adfa804c9be155731 Mon Sep 17 00:00:00 2001 From: Diggory Blake Date: Tue, 30 Mar 2021 00:37:32 +0100 Subject: [PATCH] Fix publish step --- .github/workflows/publish.yml | 7 +++++++ sqlxmq_macros/Cargo.toml | 6 +++++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index cdbe2b3..e3ca47c 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -22,3 +22,10 @@ jobs: - uses: actions-rs/cargo@v1 with: command: publish + args: --manifest-path sqlxmq_macros/Cargo.toml + - name: Wait for crates.io to update + run: sleep 30 + - uses: actions-rs/cargo@v1 + with: + command: publish + args: --manifest-path Cargo.toml diff --git a/sqlxmq_macros/Cargo.toml b/sqlxmq_macros/Cargo.toml index d70cda4..67732c5 100644 --- a/sqlxmq_macros/Cargo.toml +++ b/sqlxmq_macros/Cargo.toml @@ -3,11 +3,15 @@ name = "sqlxmq_macros" version = "0.1.0" authors = ["Diggory Blake "] edition = "2018" +license = "MIT OR Apache-2.0" +repository = "https://github.com/Diggsey/sqlxmq" +description = "Procedural macros for sqlxmq" +readme = "../README.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lib] proc-macro = true [dependencies] -syn = { version = "1.0.64", features = ["derive"] } +syn = { version = "1.0.64", features = ["full"] } quote = "1.0.9"