sqlxmq/sqlxmq_macros/Cargo.toml

18 lines
473 B
TOML
Raw Normal View History

2021-03-29 02:05:20 +00:00
[package]
name = "sqlxmq_macros"
version = "0.1.0"
authors = ["Diggory Blake <diggsey@googlemail.com>"]
edition = "2018"
2021-03-29 23:37:32 +00:00
license = "MIT OR Apache-2.0"
repository = "https://github.com/Diggsey/sqlxmq"
description = "Procedural macros for sqlxmq"
readme = "../README.md"
2021-03-29 02:05:20 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
proc-macro = true
[dependencies]
2021-03-29 23:37:32 +00:00
syn = { version = "1.0.64", features = ["full"] }
2021-03-29 02:05:20 +00:00
quote = "1.0.9"