version-migrate 0.11.0

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

[dependencies.base64]
version = "0.22.1"

[dependencies.dirs]
version = "5.0"

[dependencies.fs2]
version = "0.4"

[dependencies.semver]
version = "1.0"

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

[dependencies.serde_json]
version = "1.0"

[dependencies.thiserror]
version = "2.0"

[dependencies.tokio]
features = ["fs", "macros", "rt", "io-util", "time"]
optional = true
version = "1.0"

[dependencies.toml]
version = "0.8"

[dependencies.urlencoding]
version = "2.1.3"

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

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

[dev-dependencies.tempfile]
version = "3.0"

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

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

[features]
async = ["dep:tokio", "dep:async-trait"]
default = []

[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.11.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 = "domain_save_by_name_test"
path = "tests/domain_save_by_name_test.rs"

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

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

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

[[test]]
name = "macro_entity_save_test"
path = "tests/macro_entity_save_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"