Fix publish step

This commit is contained in:
Diggory Blake 2021-03-30 00:37:32 +01:00
parent c767c1098d
commit 4edf49255e
2 changed files with 12 additions and 1 deletions

View file

@ -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

View file

@ -3,11 +3,15 @@ name = "sqlxmq_macros"
version = "0.1.0"
authors = ["Diggory Blake <diggsey@googlemail.com>"]
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"