mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-15 14:18:04 +08:00
`specta` from Hypercube's fork commit to latest upstream commit `wasm-bindgen` 0.2.87 -> 0.2.91 `spirv-std` from 0.9 to not-yet-merged commit in https://github.com/EmbarkStudios/rust-gpu/pull/1115 `wgpu` 0.17 -> 0.19 `winit` 0.28.6 -> 0.29 `vello` and `vello_svg` from latest upstream commit to not-yet-merged commit in https://github.com/linebender/vello/pull/427 `resvg` 0.36.0 -> 0.39 `glam` 0.24 -> 0.25 `rustybuzz` 0.8.0 -> 0.10.0 `js-sys` and `web-sys` 0.3.55 -> 0.3.67 `usvg` 0.36.0 -> 0.39 `spirv` 0.2.0 -> 0.3 * Update a couple of dependencies * More test fixing… * Use upstream Specta instead of fork * Update comments in Cargo.toml --------- Co-authored-by: Keavon Chambers <keavon@keavon.com>
33 lines
959 B
TOML
33 lines
959 B
TOML
[package]
|
|
name = "dyn-any"
|
|
version = "0.3.1"
|
|
rust-version = "1.66.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/tree/master/libraries/dyn-any"
|
|
documentation = "https://docs.rs/dyn-any"
|
|
|
|
[dependencies]
|
|
dyn-any-derive = { path = "derive", version = "0.3.0", optional = true }
|
|
log = { version = "0.4", optional = true }
|
|
glam = { version = "0.25", optional = true, default-features = false }
|
|
|
|
[features]
|
|
derive = ["dyn-any-derive"]
|
|
log-bad-types = ["log"]
|
|
# Opt into impls for Rc<T> and Arc<T>.
|
|
rc = []
|
|
# Opt into impls for some glam types
|
|
glam = ["dep:glam"]
|
|
alloc = []
|
|
large-atomics = []
|
|
std = ["alloc", "rc", "glam/default"]
|
|
default = ["std", "large-atomics"]
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|