1
0
mirror of https://github.com/fafhrd91/actix-net synced 2025-01-19 03:44:40 +01:00
actix-net/actix-macros/Cargo.toml

24 lines
569 B
TOML
Raw Normal View History

2019-11-25 21:49:11 +06:00
[package]
name = "actix-macros"
2021-02-02 02:07:58 +00:00
version = "0.2.0"
2019-11-25 21:49:11 +06:00
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
2021-02-02 02:07:58 +00:00
description = "Macros for Actix system and runtime"
repository = "https://github.com/actix/actix-net.git"
documentation = "https://docs.rs/actix-macros"
2019-11-25 21:49:11 +06:00
categories = ["network-programming", "asynchronous"]
license = "MIT OR Apache-2.0"
2019-11-25 21:49:11 +06:00
edition = "2018"
[lib]
proc-macro = true
[dependencies]
2020-03-06 13:45:21 +09:00
quote = "1.0.3"
2019-11-25 21:49:11 +06:00
syn = { version = "^1", features = ["full"] }
[dev-dependencies]
actix-rt = "2.0.0"
2020-04-26 20:11:16 +01:00
2020-05-18 15:36:23 +09:00
futures-util = { version = "0.3", default-features = false }
2020-04-26 20:11:16 +01:00
trybuild = "1"