Use cargo workspace to remove duplicated version, license, and author fields (#4226)

Use cargo workspace to remove dublicated version, license and author fields
This commit is contained in:
Timon
2026-09-15 10:36:17 +00:00
committed by GitHub
parent 68d2a06c80
commit c6d6f9f8be
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]
+6 -5
View File
@@ -1,11 +1,12 @@
[package]
name = "math-parser"
version = "0.0.0"
rust-version = "1.85"
edition = "2024"
authors = ["Graphite Authors <contact@graphite.art>"]
description = "Parser for Graphite style mathematics expressions"
license = "MIT OR Apache-2.0"
version.workspace = true
license.workspace = true
authors.workspace = true
edition.workspace = true
rust-version.workspace = true
publish.workspace = true
[dependencies]
thiserror = "2.0"
+4 -2
View File
@@ -2,9 +2,11 @@
name = "wgpu-sync"
description = "Helper for working with wgpu in a multi-threaded context"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
authors.workspace = true
edition.workspace = true
rust-version.workspace = true
publish.workspace = true
[dependencies]
wgpu = { workspace = true }