mirror of https://github.com/rwf2/Rocket.git
35 lines
979 B
TOML
35 lines
979 B
TOML
[package]
|
|
name = "rocket_codegen"
|
|
version = "0.5.0-rc.4"
|
|
authors = ["Sergio Benitez <sb@sergio.bz>"]
|
|
description = "Procedural macros for the Rocket web framework."
|
|
documentation = "https://api.rocket.rs/v0.5-rc/rocket_codegen/"
|
|
homepage = "https://rocket.rs"
|
|
repository = "https://github.com/SergioBenitez/Rocket"
|
|
readme = "../../README.md"
|
|
keywords = ["rocket", "web", "framework", "code", "generation"]
|
|
license = "MIT OR Apache-2.0"
|
|
edition = "2021"
|
|
rust-version = "1.56"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
indexmap = "2"
|
|
quote = "1.0"
|
|
syn = { version = "2.0", features = ["full", "visit", "visit-mut", "extra-traits"] }
|
|
proc-macro2 = "1.0.27"
|
|
devise = "0.4"
|
|
rocket_http = { version = "=0.5.0-rc.4", path = "../http/" }
|
|
unicode-xid = "0.2"
|
|
version_check = "0.9"
|
|
glob = "0.3"
|
|
|
|
[dev-dependencies]
|
|
rocket = { path = "../lib", features = ["json", "msgpack"] }
|
|
time = { version = "0.3", features = ["macros"] }
|
|
pretty_assertions = "1"
|
|
version_check = "0.9"
|
|
trybuild = "1.0"
|