2019-03-07 20:09:42 +01:00
|
|
|
[package]
|
|
|
|
name = "actix-web-codegen"
|
2019-03-26 20:50:51 +01:00
|
|
|
version = "0.1.0-alpha.1"
|
2019-03-28 21:46:26 +01:00
|
|
|
description = "Actix web proc macros"
|
|
|
|
readme = "README.md"
|
2019-03-07 20:09:42 +01:00
|
|
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
|
|
|
license = "MIT/Apache-2.0"
|
|
|
|
edition = "2018"
|
|
|
|
workspace = ".."
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
quote = "0.6"
|
|
|
|
syn = { version = "0.15", features = ["full", "parsing"] }
|
2019-03-18 04:20:10 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2019-03-30 05:13:39 +01:00
|
|
|
#actix-web = { version = "1.0.0-alpha.1" }
|
|
|
|
#actix-http = { version = "0.1.0-alpha.1", features=["ssl"] }
|
|
|
|
#actix-http-test = { version = "0.1.0-alpha.1", features=["ssl"] }
|
|
|
|
actix-web = { path = ".." }
|
|
|
|
actix-http = { path = "../actix-http", features=["ssl"] }
|
|
|
|
actix-http-test = { path = "../test-server", features=["ssl"] }
|