1 | [package] |
2 | name = "downcast-rs" |
3 | version = "1.2.0" |
4 | authors = ["Ashish Myles <marcianx@gmail.com>" , "Runji Wang <wangrunji0408@163.com>" ] |
5 | repository = "https://github.com/marcianx/downcast-rs" |
6 | description = "" " |
7 | Trait object downcasting support using only safe Rust. It supports type |
8 | parameters, associated types, and type constraints. |
9 | " "" |
10 | readme = "README.md" |
11 | keywords = ["downcast" , "any" , "trait" , "associated" , "no_std" ] |
12 | license = "MIT/Apache-2.0" |
13 | |
14 | [features] |
15 | default = ["std" ] |
16 | std = [] |
17 | |