This repository has been archived on 2023-09-20. You can view files and clone it, but cannot push or open issues or pull requests.
rust-opensmtpd/opensmtpd-derive/Cargo.toml

21 lines
618 B
TOML
Raw Normal View History

2020-12-20 17:24:08 +01:00
[package]
name = "opensmtpd_derive"
2020-12-21 15:43:56 +01:00
version = "0.4.1"
2020-12-20 17:24:08 +01:00
authors = ["Rodolphe Bréard <rodolphe@what.tf>"]
edition = "2018"
description = "Interface for OpenSMTPD filters"
keywords = ["opensmtpd", "filter", "mail"]
documentation = "https://docs.rs/opensmtpd-derive/"
repository = "https://github.com/breard-r/rust-opensmtpd"
2020-12-20 18:17:32 +01:00
readme = "../README.md"
2020-12-20 17:24:08 +01:00
license = "MIT OR Apache-2.0"
include = ["src/**/*", "Cargo.toml", "../LICENSE-*.txt"]
[lib]
proc-macro = true
[dependencies]
proc-macro2 = "1.0"
quote = "1.0"
2020-12-20 18:13:30 +01:00
syn = { version = "1.0", default-features = false, features = ["full", "parsing", "printing", "proc-macro"] }