1
0
mirror of https://github.com/fafhrd91/actix-web synced 2024-11-23 16:21:06 +01:00
actix-web/actix-web-codegen/Cargo.toml

33 lines
716 B
TOML
Raw Normal View History

[package]
name = "actix-web-codegen"
version = "4.2.2"
2021-02-10 13:45:46 +01:00
description = "Routing and runtime macros for Actix Web"
2020-05-25 09:45:34 +02:00
homepage = "https://actix.rs"
2023-11-07 00:54:38 +01:00
repository = "https://github.com/actix/actix-web"
2021-10-19 18:30:32 +02:00
authors = [
"Nikolay Kim <fafhrd91@gmail.com>",
"Rob Ede <robjtede@icloud.com>",
]
license = "MIT OR Apache-2.0"
2023-07-02 02:09:15 +02:00
edition = "2021"
[lib]
proc-macro = true
[dependencies]
2022-09-19 19:52:16 +02:00
actix-router = "0.5"
proc-macro2 = "1"
2020-05-23 10:22:30 +02:00
quote = "1"
2023-07-20 11:49:01 +02:00
syn = { version = "2", features = ["full", "extra-traits"] }
2019-03-18 04:20:10 +01:00
[dev-dependencies]
2023-07-20 11:49:01 +02:00
actix-macros = "0.2.4"
actix-rt = "2.2"
2022-07-24 03:13:46 +02:00
actix-test = "0.1"
2022-09-11 17:44:46 +02:00
actix-utils = "3"
actix-web = "4"
futures-core = { version = "0.3.17", default-features = false, features = ["alloc"] }
trybuild = "1"
rustversion = "1"