mirror of
https://github.com/Diggsey/sqlxmq.git
synced 2024-11-21 15:51:00 +00:00
Fix publish step
This commit is contained in:
parent
c767c1098d
commit
4edf49255e
2 changed files with 12 additions and 1 deletions
7
.github/workflows/publish.yml
vendored
7
.github/workflows/publish.yml
vendored
|
@ -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
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue