mirror of
https://github.com/fafhrd91/actix-web
synced 2025-02-17 10:13:30 +01:00
```rust error[E0277]: `syn::attr::NestedMeta` doesn't implement `std::fmt::Debug` --> src/route.rs:149:57 | 149 | attr => panic!("Unknown attribute{:?}", attr), | ^^^^ `syn::attr::NestedMeta` cannot be formatted using `{:?}` because it doesn't implement `std::fmt::Debug` | = help: the trait `std::fmt::Debug` is not implemented for `syn::attr::NestedMeta` = note: required because of the requirements on the impl of `std::fmt::Debug` for `&syn::attr::NestedMeta` = note: required by `std::fmt::Debug::fmt` ```
23 lines
554 B
TOML
23 lines
554 B
TOML
[package]
|
|
name = "actix-web-codegen"
|
|
version = "0.1.0"
|
|
description = "Actix web proc macros"
|
|
readme = "README.md"
|
|
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", "extra-traits"] }
|
|
|
|
[dev-dependencies]
|
|
actix-web = { version = "1.0.0-beta.5" }
|
|
actix-http = { version = "0.2.0", features=["ssl"] }
|
|
actix-http-test = { version = "0.2.0", features=["ssl"] }
|
|
futures = { version = "0.1" }
|