-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (23 loc) · 850 Bytes
/
Cargo.toml
File metadata and controls
27 lines (23 loc) · 850 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package]
name = "fluent-impl"
description = "A procedural macro that generates chaining methods from non-chaining ones in an impl block"
version = "0.2.0"
authors = ["Mohammad AlSaleh <CE.Mohammad.AlSaleh@gmail.com>"]
license = "MPL-2.0"
readme = "README.md"
repository = "https://github.com/rust-alt/fluent-impl"
homepage = "https://github.com/rust-alt/fluent-impl"
documentation = "https://docs.rs/fluent_impl"
categories = [ "rust-patterns" ]
keywords = [ "api", "attribute", "proc-macro", "fluent", "chaining" ]
[badges]
appveyor = { repository = "rust-alt/fluent-impl" }
travis-ci = { repository = "rust-alt/fluent-impl" }
[lib]
proc-macro = true
[dependencies]
syn = { version = "0.15", features = ["full", "extra-traits"] }
quote = "0.6"
proc-macro2 = "0.4"
[dev-dependencies]
compiletest_rs = { version = "0.3", features = ["stable"] }