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