diff options
author | Martin Fischer <martin@push-f.com> | 2021-11-15 10:29:52 +0100 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2021-11-18 23:36:01 +0100 |
commit | 2a8a0601afcb82d90d0766db5a954b70b10f856d (patch) | |
tree | 0271062335d450e151598d4ad9aa327ffa0dfaea /Cargo.toml |
publishv0.1.0
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..3b31a88 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,28 @@ +[package] +name = "dynamize" +version = "0.1.0" +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 +doctest = false + +# 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" |