mirror of
https://github.com/rwf2/Rocket.git
synced 2024-12-27 21:02:41 +00:00
6a3d1ac1d5
As 'FromForm' doesn't provide access to the raw, undecoded string, 'MsgPack' cannot implement 'FromForm::from_value()'. This means that it is not presently possible to parse a MessagePack form from a query string. As such, the 'UriDisplay<Query>' implementation was removed. The 'UriDisplay<Query>' for JSON was fixed such that a round-trip of a 'Json<T>' as a form works as expected.
33 lines
930 B
TOML
33 lines
930 B
TOML
[package]
|
|
name = "rocket_codegen"
|
|
version = "0.5.0-rc.1"
|
|
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 = "2018"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
indexmap = "1.0"
|
|
quote = "1.0"
|
|
syn = { version = "1.0.72", features = ["full", "visit", "visit-mut", "extra-traits"] }
|
|
proc-macro2 = "1.0.27"
|
|
devise = "0.3"
|
|
rocket_http = { version = "0.5.0-rc.1", path = "../http/" }
|
|
unicode-xid = "0.2"
|
|
glob = "0.3"
|
|
|
|
[dev-dependencies]
|
|
rocket = { version = "0.5.0-rc.1", path = "../lib", features = ["json", "msgpack"] }
|
|
pretty_assertions = "0.7"
|
|
version_check = "0.9"
|
|
trybuild = "1.0"
|
|
time = "0.2.11"
|