version-migrate 0.5.0

Explicit, type-safe schema versioning and migration for Rust
Documentation
[dependencies.async-trait]
version = "0.1"

[dependencies.semver]
version = "1.0"

[dependencies.serde]
features = ["derive"]
version = "1.0"

[dependencies.serde_json]
version = "1.0"

[dependencies.thiserror]
version = "2.0"

[dependencies.version-migrate-macro]
version = "0.5.0"

[dev-dependencies.serde_yaml]
version = "0.9"

[dev-dependencies.tokio]
features = ["macros", "rt", "time"]
version = "1.0"

[dev-dependencies.toml]
version = "0.8"

[lib]
name = "version_migrate"
path = "src/lib.rs"

[package]
authors = ["Yutaka Nishimura"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["data-structures", "encoding"]
description = "Explicit, type-safe schema versioning and migration for Rust"
documentation = "https://docs.rs/version-migrate"
edition = "2021"
keywords = ["migration", "versioning", "schema", "persistence"]
license = "MIT OR Apache-2.0"
name = "version-migrate"
readme = "README.md"
repository = "https://github.com/ynishi/version-migrate"
version = "0.5.0"

[[test]]
name = "async_test"
path = "tests/async_test.rs"

[[test]]
name = "auto_tag_test"
path = "tests/auto_tag_test.rs"

[[test]]
name = "config_migrator_test"
path = "tests/config_migrator_test.rs"

[[test]]
name = "custom_keys_test"
path = "tests/custom_keys_test.rs"

[[test]]
name = "flat_format_test"
path = "tests/flat_format_test.rs"

[[test]]
name = "integration_test"
path = "tests/integration_test.rs"

[[test]]
name = "nested_migration_test"
path = "tests/nested_migration_test.rs"

[[test]]
name = "queryable_macro_test"
path = "tests/queryable_macro_test.rs"

[[test]]
name = "runtime_override_test"
path = "tests/runtime_override_test.rs"

[[test]]
name = "standalone_queryable_test"
path = "tests/standalone_queryable_test.rs"