2019-11-25 16:49:11 +01:00
|
|
|
[package]
|
|
|
|
name = "actix-macros"
|
2021-10-19 17:13:13 +02:00
|
|
|
version = "0.2.3"
|
2021-06-08 18:48:30 +02:00
|
|
|
authors = [
|
|
|
|
"Nikolay Kim <fafhrd91@gmail.com>",
|
|
|
|
"Ibraheem Ahmed <ibrah1440@gmail.com>",
|
2021-10-19 17:13:13 +02:00
|
|
|
"Rob Ede <robjtede@icloud.com>",
|
2021-06-08 18:48:30 +02:00
|
|
|
]
|
2021-02-02 03:07:58 +01:00
|
|
|
description = "Macros for Actix system and runtime"
|
2021-10-14 12:08:02 +02:00
|
|
|
repository = "https://github.com/actix/actix-net.git"
|
2019-11-25 16:49:11 +01:00
|
|
|
categories = ["network-programming", "asynchronous"]
|
2020-07-14 12:11:30 +02:00
|
|
|
license = "MIT OR Apache-2.0"
|
2023-04-01 22:39:19 +02:00
|
|
|
edition = "2021"
|
|
|
|
rust-version = "1.60"
|
2019-11-25 16:49:11 +01:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
|
|
|
[dependencies]
|
2022-12-21 21:36:26 +01:00
|
|
|
quote = "1"
|
|
|
|
syn = { version = "1", features = ["full"] }
|
2019-11-25 16:49:11 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-12-21 21:36:26 +01:00
|
|
|
actix-rt = "2"
|
2020-04-26 21:11:16 +02:00
|
|
|
|
2022-12-21 21:36:26 +01:00
|
|
|
futures-util = { version = "0.3.17", default-features = false }
|
2021-10-19 15:53:42 +02:00
|
|
|
rustversion = "1"
|
2020-04-26 21:11:16 +02:00
|
|
|
trybuild = "1"
|