Use cargo workspace to remove dublicated version, license and author fields

This commit is contained in:
Timon
2026-09-13 15:40:04 +00:00
parent ecd2007e63
commit 9656f80e42
58 changed files with 334 additions and 263 deletions
+7 -8
View File
@@ -1,15 +1,14 @@
[package]
name = "dyn-any"
version = "0.3.1"
rust-version = "1.85"
edition = "2024"
authors = ["Graphite Authors <contact@graphite.art>"]
description = "An Any trait that works for arbitrary lifetimes"
license = "MIT OR Apache-2.0"
readme = "./README.md"
homepage = "https://crates.io/crates/dyn-any"
repository = "https://github.com/GraphiteEditor/Graphite/tree/master/libraries/dyn-any"
version = "0.3.1"
license.workspace = true
authors.workspace = true
edition.workspace = true
rust-version.workspace = true
documentation = "https://docs.rs/dyn-any"
repository = "https://github.com/GraphiteEditor/Graphite/tree/master/libraries/dyn-any"
readme = "./README.md"
[features]
default = ["std", "large-atomics"]
+5 -5
View File
@@ -1,13 +1,13 @@
[package]
name = "dyn-any-derive"
version = "0.3.0"
edition = "2024"
authors = ["Graphite Authors <contact@graphite.art>"]
description = "#[derive(DynAny)]"
version = "0.3.0"
license.workspace = true
authors.workspace = true
edition.workspace = true
rust-version.workspace = true
documentation = "https://docs.rs/dyn-any-derive"
repository = "https://github.com/GraphiteEditor/Graphite/tree/master/libraries/dyn-any/derive"
license = "MIT OR Apache-2.0"
readme = "../README.md"
[lib]