24 lines
669 B
TOML
24 lines
669 B
TOML
[package]
|
|
name = "dyn-any"
|
|
version = "0.2.1"
|
|
rust-version = "1.65.0"
|
|
edition = "2021"
|
|
authors = ["Graphite Authors <contact@graphite.rs>"]
|
|
description = "An Any trait that works for arbitrary lifetimes"
|
|
license = "MIT OR Apache-2.0"
|
|
readme = "./README.md"
|
|
homepage = "https://graphite.rs/libraries/dyn-any"
|
|
repository = "https://github.com/GraphiteEditor/Graphite/libraries/dyn-any"
|
|
documentation = "https://docs.rs/dyn-any"
|
|
|
|
[dependencies]
|
|
dyn-any-derive = { path = "derive", version = "0.2.0", optional = true }
|
|
log = { version = "0.4", optional = true }
|
|
|
|
[features]
|
|
derive = ["dyn-any-derive"]
|
|
log-bad-types = ["log"]
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|