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