mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-23 01:18:12 +08:00
22 lines
653 B
TOML
22 lines
653 B
TOML
[package]
|
|
name = "migration-core"
|
|
description = "Trait definitions and selectors for Graphite document migrations"
|
|
edition.workspace = true
|
|
version.workspace = true
|
|
license.workspace = true
|
|
authors.workspace = true
|
|
|
|
[features]
|
|
default = ["typed"]
|
|
# Content-tier migrations over the typed registry. Format-tier-only migration crates
|
|
# (historic version steps, wasm builds) disable this to drop the graph-storage dependency.
|
|
typed = ["dep:graph-storage"]
|
|
|
|
[dependencies]
|
|
graph-storage = { workspace = true, optional = true }
|
|
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
rmp-serde = { workspace = true }
|
|
thiserror = { workspace = true }
|