ruwuma/Cargo.toml
Jörg Sommer c91b9137fb Update dependent crates quote, syn and others
Cargo treats updates in the third position of the version number as
compatible and updates them silently. Therefore, we can drop this number
in the config.

`Tokens` was moved from *quote* to *proc_macro2* and got renamed to
`TokenStream`.
2018-08-31 13:47:27 +02:00

37 lines
771 B
TOML

[package]
authors = ["Jimmy Cuadra <jimmy@jimmycuadra.com>"]
description = "A procedural macro for generating ruma-api Endpoints."
documentation = "https://docs.rs/ruma-api-macros"
homepage = "https://github.com/ruma/ruma-api-macros"
keywords = ["matrix", "chat", "messaging", "ruma"]
license = "MIT"
name = "ruma-api-macros"
readme = "README.md"
repository = "https://github.com/ruma/ruma-api-macros"
version = "0.2.2"
[dependencies]
quote = "0.6"
ruma-api = "0.5"
[dependencies.syn]
version = "0.14"
features = ["full"]
[dependencies.proc-macro2]
version = "0.4"
features = ["nightly"]
[dev-dependencies]
futures = "0.1"
http = "0.1"
hyper = "0.12"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
serde_urlencoded = "0.5"
url = "1.7"
[lib]
proc-macro = true