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

This commit is contained in:
Timon
2026-06-11 15:03:57 +00:00
parent ecd2007e63
commit 9656f80e42
58 changed files with 334 additions and 263 deletions

View File

@@ -1,10 +1,12 @@
[package]
name = "document-container"
description = "Container abstraction for the on-disk side of the .gdd document format"
edition.workspace = true
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 = "document-format"
description = "Typed handle for the .gdd document format, sitting over document-graph-storage and document-container"
edition.workspace = true
version.workspace = true
license.workspace = true
authors.workspace = true
edition.workspace = true
rust-version.workspace = true
publish.workspace = true
[features]
# Runtime bridge: the editor <-> storage conversion methods (stage/commit from a `NodeNetwork`,

View File

@@ -1,10 +1,12 @@
[package]
name = "document-graph-storage"
description = "Provides a delta based graph representation used in the Graphite file format"
edition.workspace = true
version.workspace = true
license.workspace = true
authors.workspace = true
edition.workspace = true
rust-version.workspace = true
publish.workspace = true
[features]
conversion = ["dep:graph-craft", "dep:core-types"]