mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-19 02:48:12 +08:00
* Selecting multiple nodes * Improve logs * Log bad types in dyn any * Add (broken) node links * New topological sort * Fix reorder ids function * Input and output node * Add nodes that operate on images * Fixups * Show node parameters together with layer properties * New nodes don't crash editor * Fix tests * Node positions backend * Generate node graph on value change * Add expose input message * Fix tests Co-authored-by: Keavon Chambers <keavon@keavon.com>
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
|