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

View File

@@ -1,9 +1,11 @@
[package]
name = "graph-craft"
version = "0.1.0"
edition = "2024"
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
[features]
default = ["dealloc_nodes", "wgpu", "loading"]

View File

@@ -1,10 +1,12 @@
[package]
name = "graphene-cli"
version = "0.1.0"
edition = "2024"
description = "CLI interface for the graphene language"
authors = ["Graphite Authors <contact@graphite.art>"]
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
[features]
default = ["wgpu"]

View File

@@ -1,9 +1,11 @@
[package]
name = "interpreted-executor"
version = "0.1.0"
edition = "2024"
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
[features]
default = []

View File

@@ -1,10 +1,12 @@
[package]
name = "graphene-application-io"
version = "0.1.0"
edition = "2024"
description = "graphene application io interface"
authors = ["Graphite Authors <contact@graphite.art>"]
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
[features]
default = ["serde"]

View File

@@ -1,10 +1,12 @@
[package]
name = "brush-types"
version = "0.1.0"
edition = "2024"
description = "The brush stroke data format for Graphene"
authors = ["Graphite Authors <contact@graphite.art>"]
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
[features]
default = ["serde"]

View File

@@ -1,10 +1,12 @@
[package]
name = "graphene-canvas-utils"
version = "0.1.0"
edition = "2024"
description = "graphene canvas utilities"
authors = ["Graphite Authors <contact@graphite.art>"]
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
[features]
wgpu = ["dep:wgpu", "dep:wgpu-executor"]

View File

@@ -1,10 +1,12 @@
[package]
name = "core-types"
version = "0.1.0"
edition = "2024"
description = "Core types and traits for Graphene node system"
authors = ["Graphite Authors <contact@graphite.art>"]
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
[features]
default = ["serde"]

View File

@@ -1,11 +1,12 @@
[package]
name = "graphene-hash"
version = "0.0.0"
edition = "2024"
authors = ["Graphite Authors <contact@graphite.art>"]
description = "CacheHash trait and derive macro for cache invalidation hashing in Graphite"
license = "MIT OR Apache-2.0"
publish = false
version.workspace = true
license.workspace = true
authors.workspace = true
edition.workspace = true
rust-version.workspace = true
publish.workspace = true
[features]
default = ["std"]

View File

@@ -1,11 +1,12 @@
[package]
name = "graphene-hash-derive"
version = "0.0.0"
edition = "2024"
authors = ["Graphite Authors <contact@graphite.art>"]
description = "#[derive(CacheHash)]"
license = "MIT OR Apache-2.0"
publish = false
version.workspace = true
license.workspace = true
authors.workspace = true
edition.workspace = true
rust-version.workspace = true
publish.workspace = true
[lib]
proc-macro = true

View File

@@ -1,10 +1,12 @@
[package]
name = "graphic-types"
version = "0.1.0"
edition = "2024"
description = "Graphic types for Graphene - combines vector types with core infrastructure"
authors = ["Graphite Authors <contact@graphite.art>"]
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
[features]
default = ["serde"]

View File

@@ -1,10 +1,12 @@
[package]
name = "no-std-types"
version = "0.1.0"
edition = "2024"
description = "no_std types for Graphene (shader-compatible)"
authors = ["Graphite Authors <contact@graphite.art>"]
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
[features]
# any feature that

View File

@@ -1,10 +1,12 @@
[package]
name = "raster-types"
version = "0.1.0"
edition = "2024"
description = "Raster data types for Graphene node system"
authors = ["Graphite Authors <contact@graphite.art>"]
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
[features]
default = ["serde"]

View File

@@ -1,10 +1,12 @@
[package]
name = "rendering"
version = "0.1.0"
edition = "2024"
description = "SVG rendering for Graphene"
authors = ["Graphite Authors <contact@graphite.art>"]
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
[features]
default = ["serde"]

View File

@@ -1,10 +1,12 @@
[package]
name = "graphene-resource"
version = "0.1.0"
edition = "2024"
description = "graphene resource interface"
authors = ["Graphite Authors <contact@graphite.art>"]
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
[features]
default = ["serde"]

View File

@@ -1,10 +1,12 @@
[package]
name = "vector-types"
version = "0.1.0"
edition = "2024"
description = "Vector graphics types and algorithms for Graphene"
authors = ["Graphite Authors <contact@graphite.art>"]
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
[features]
default = ["serde"]

View File

@@ -1,9 +1,11 @@
[package]
name = "wgpu-executor"
version = "0.1.0"
edition = "2024"
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]
# Local dependencies

View File

@@ -1,14 +1,11 @@
[package]
name = "node-macro"
publish = false
version = "0.0.0"
rust-version = "1.88"
authors = ["Graphite Authors <contact@graphite.art>"]
edition = "2024"
readme = "../../README.md"
homepage = "https://graphite.art"
repository = "https://github.com/GraphiteEditor/Graphite"
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
[lib]
proc-macro = true

View File

@@ -1,10 +1,12 @@
[package]
name = "blending-nodes"
version = "0.1.0"
edition = "2024"
description = "Blending operation nodes for Graphene"
authors = ["Graphite Authors <contact@graphite.art>"]
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
[features]
default = ["serde"]

View File

@@ -1,10 +1,12 @@
[package]
name = "brush-nodes"
version = "0.1.0"
edition = "2024"
description = "Brush rendering nodes for Graphene"
authors = ["Graphite Authors <contact@graphite.art>"]
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
[features]
default = ["serde"]

View File

@@ -1,10 +1,12 @@
[package]
name = "graphene-core"
version = "0.1.0"
edition = "2024"
description = "Core utility nodes for Graphene"
authors = ["Graphite Authors <contact@graphite.art>"]
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
[features]
default = ["serde"]

View File

@@ -1,9 +1,11 @@
[package]
name = "graphic-nodes"
version = "0.1.0"
edition = "2024"
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]
# Local dependencies

View File

@@ -1,10 +1,12 @@
[package]
name = "graphene-std"
version = "0.1.0"
edition = "2024"
description = "Graphene standard library"
authors = ["Graphite Authors <contact@graphite.art>"]
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
[features]
default = ["wgpu"]

View File

@@ -1,10 +1,12 @@
[package]
name = "math-nodes"
version = "0.1.0"
edition = "2024"
description = "Math operation nodes for Graphene"
authors = ["Graphite Authors <contact@graphite.art>"]
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]
core-types = { workspace = true }

View File

@@ -1,10 +1,12 @@
[package]
name = "path-bool-nodes"
version = "0.1.0"
edition = "2024"
description = "Path boolean operation nodes for Graphene"
authors = ["Graphite Authors <contact@graphite.art>"]
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]
# Local dependencies

View File

@@ -1,10 +1,12 @@
[package]
name = "raster-nodes"
version = "0.1.0"
edition = "2024"
description = "Raster operation nodes for Graphene"
authors = ["Graphite Authors <contact@graphite.art>"]
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
[lints]
workspace = true

View File

@@ -1,10 +1,12 @@
[package]
name = "raster-nodes-shaders"
version = "0.1.0"
edition = "2024"
description = "graphene raster data format"
authors = ["Graphite Authors <contact@graphite.art>"]
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]

View File

@@ -1,10 +1,12 @@
[package]
name = "raster-nodes-shaders-entrypoint"
version = "0.1.0"
edition = "2024"
description = "graphene raster nodes shaders entrypoint"
authors = ["Graphite Authors <contact@graphite.art>"]
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]
raster-nodes = { path = "../..", default-features = false }

View File

@@ -1,10 +1,12 @@
[package]
name = "repeat-nodes"
version = "0.1.0"
edition = "2024"
description = "Repeat operation nodes for Graphene"
authors = ["Graphite Authors <contact@graphite.art>"]
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
[features]
default = ["serde"]

View File

@@ -1,10 +1,12 @@
[package]
name = "text-nodes"
version = "0.1.0"
edition = "2024"
description = "Text operation nodes for Graphene"
authors = ["Graphite Authors <contact@graphite.art>"]
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
[features]
default = ["serde"]

View File

@@ -1,10 +1,12 @@
[package]
name = "transform-nodes"
version = "0.1.0"
edition = "2024"
description = "Transform operation nodes for Graphene"
authors = ["Graphite Authors <contact@graphite.art>"]
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
[features]
default = ["serde"]

View File

@@ -1,10 +1,12 @@
[package]
name = "vector-nodes"
version = "0.1.0"
edition = "2024"
description = "Vector operation nodes for Graphene"
authors = ["Graphite Authors <contact@graphite.art>"]
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
[features]
default = ["serde"]

View File

@@ -1,9 +1,11 @@
[package]
name = "preprocessor"
version = "0.1.0"
edition = "2024"
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
[features]