You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
487 B
17 lines
487 B
[package]
|
|
name = "downcast-rs"
|
|
version = "1.2.0"
|
|
authors = ["Ashish Myles <marcianx@gmail.com>", "Runji Wang <wangrunji0408@163.com>"]
|
|
repository = "https://github.com/marcianx/downcast-rs"
|
|
description = """
|
|
Trait object downcasting support using only safe Rust. It supports type
|
|
parameters, associated types, and type constraints.
|
|
"""
|
|
readme = "README.md"
|
|
keywords = ["downcast", "any", "trait", "associated", "no_std"]
|
|
license = "MIT/Apache-2.0"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = []
|