1
0
mirror of https://github.com/fafhrd91/actix-net synced 2025-01-19 06:04:41 +01:00
actix-net/actix-macros/Cargo.toml

24 lines
546 B
TOML
Raw Normal View History

2019-11-25 21:49:11 +06:00
[package]
name = "actix-macros"
2020-05-18 15:36:23 +09:00
version = "0.1.2"
2019-11-25 21:49:11 +06:00
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
2019-12-01 20:30:24 +06:00
description = "Actix runtime macros"
2019-11-25 21:49:11 +06:00
repository = "https://github.com/actix/actix-net"
documentation = "https://docs.rs/actix-macros/"
categories = ["network-programming", "asynchronous"]
license = "MIT/Apache-2.0"
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]
2020-04-26 20:11:16 +01:00
actix-rt = "1.0"
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"