2019-11-25 21:49:11 +06:00
|
|
|
[package]
|
|
|
|
name = "actix-macros"
|
2023-07-19 23:52:56 +01:00
|
|
|
version = "0.2.4"
|
2021-06-08 17:48:30 +01:00
|
|
|
authors = [
|
|
|
|
"Nikolay Kim <fafhrd91@gmail.com>",
|
|
|
|
"Ibraheem Ahmed <ibrah1440@gmail.com>",
|
2021-10-19 16:13:13 +01:00
|
|
|
"Rob Ede <robjtede@icloud.com>",
|
2021-06-08 17:48:30 +01:00
|
|
|
]
|
2021-02-02 02:07:58 +00:00
|
|
|
description = "Macros for Actix system and runtime"
|
2023-09-17 20:25:58 +01:00
|
|
|
repository = "https://github.com/actix/actix-net"
|
2019-11-25 21:49:11 +06:00
|
|
|
categories = ["network-programming", "asynchronous"]
|
2023-09-17 20:25:58 +01:00
|
|
|
license.workspace = true
|
2023-07-17 03:05:39 +01:00
|
|
|
edition.workspace = true
|
|
|
|
rust-version.workspace = true
|
2019-11-25 21:49:11 +06:00
|
|
|
|
2023-09-17 20:25:58 +01:00
|
|
|
[package.metadata.cargo-machete]
|
|
|
|
ignored = [
|
|
|
|
"proc_macro2", # specified for minimal versions compat
|
|
|
|
]
|
|
|
|
|
2019-11-25 21:49:11 +06:00
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
|
|
|
[dependencies]
|
2022-12-21 20:36:26 +00:00
|
|
|
quote = "1"
|
2023-04-01 22:21:14 +01:00
|
|
|
syn = { version = "2", features = ["full"] }
|
2019-11-25 21:49:11 +06:00
|
|
|
|
2023-09-17 20:25:58 +01:00
|
|
|
# minimal versions compat
|
|
|
|
proc-macro2 = "1.0.60"
|
|
|
|
|
2019-11-25 21:49:11 +06:00
|
|
|
[dev-dependencies]
|
2022-12-21 20:36:26 +00:00
|
|
|
actix-rt = "2"
|
2020-04-26 20:11:16 +01:00
|
|
|
|
2022-12-21 20:36:26 +00:00
|
|
|
futures-util = { version = "0.3.17", default-features = false }
|
2021-10-19 14:53:42 +01:00
|
|
|
rustversion = "1"
|
2020-04-26 20:11:16 +01:00
|
|
|
trybuild = "1"
|