teloxide/Cargo.toml

22 lines
551 B
TOML
Raw Normal View History

2020-02-24 09:48:37 +01:00
[package]
name = "teloxide-macros"
2022-07-19 17:56:59 +02:00
version = "0.6.3"
2020-02-24 09:49:39 +01:00
description = "The teloxide's procedural macros"
2020-02-24 09:48:37 +01:00
license = "MIT"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2022-09-29 12:08:27 +02:00
[lib]
proc-macro = true
2020-02-24 09:48:37 +01:00
[dependencies]
quote = "1.0.7"
proc-macro2 = "1.0.19"
2020-07-23 19:56:25 +02:00
syn = { version = "1.0.13", features = ["full"] }
2022-03-22 11:05:58 +01:00
heck = "0.4.0"
2020-02-24 09:48:37 +01:00
2022-09-29 12:08:27 +02:00
[dev-dependencies]
2022-10-03 14:28:45 +02:00
# XXX: Do not enable `macros` feature
2022-10-05 07:58:25 +02:00
teloxide = { git = "https://github.com/teloxide/teloxide.git", rev = "b5e237a8a22f9f987b6e4245b9b6c3ca1f804c19" }