sqlxmq/sqlxmq_macros/Cargo.toml
Diggory Blake 5d287b7247
Multiple fixes:
- Add functions to clear channels.
- Clear all channels before stress test.
- Abort stress test if spawning a job fails.
- Add function to determine whether an operation can be retried.
- Bump version to 0.3.0.
2021-09-20 13:29:20 +01:00

19 lines
514 B
TOML

[package]
name = "sqlxmq_macros"
version = "0.3.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"
documentation = "https://docs.rs/sqlxmq"
# 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 = ["full"] }
quote = "1.0.9"