mirror of
https://github.com/actix/actix
synced 2024-12-02 18:02:23 +01:00
31 lines
639 B
TOML
31 lines
639 B
TOML
[package]
|
|
name = "actix_derive"
|
|
version = "0.6.1"
|
|
authors = [
|
|
"Callym <hi@callym.com>",
|
|
"Nikolay Kim <fafhrd91@gmail.com>",
|
|
"Rob Ede <robjtede@icloud.com>",
|
|
]
|
|
description = "Derive macros for `actix` actors"
|
|
keywords = ["actix", "actors", "derive", "macro"]
|
|
repository = "https://github.com/actix/actix"
|
|
license = "MIT OR Apache-2.0"
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[badges]
|
|
maintenance.status = "passively-maintained"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
quote = "1"
|
|
syn = { version = "2", features = ["full"] }
|
|
proc-macro2 = "1"
|
|
|
|
[dev-dependencies]
|
|
actix = "0.13"
|
|
trybuild = "1"
|
|
rustversion = "1"
|