aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 51fed6e34daf538f53026e0f3788f757778df229 (plain)
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 = "dynamize"
version = "0.3.2"
description = "proc macro to make traits with associated types object-safe"
authors = ["Martin Fischer <martin@push-f.com>"]
license = "MIT"
repository = "https://git.push-f.com/dynamize"
keywords = ["proc-macro", "attribute", "dyn", "object-safe", "blanket"]
categories = ["rust-patterns"]
edition = "2021"

[lib]
proc-macro = true

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[features]
# internal features
nightly = []

[dependencies]
proc-macro2 = "1.0"
quote = "1.0"
syn = { version = "1.0", features = ["full", "extra-traits"] }

[dev-dependencies]
async-trait = "0.1"