version-migrate 0.20.0

Explicit, type-safe schema versioning and migration for Rust
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

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

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

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

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

[[test]]
name = "create_migrator_test"
path = "tests/create_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 = "forward_compat_test"
path = "tests/forward_compat_test.rs"

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

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

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

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

[[test]]
name = "migrator_macro_test"
path = "tests/migrator_macro_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 = "simple_vec_test"
path = "tests/simple_vec_test.rs"

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

[dependencies.async-trait]
version = "0.1"
optional = true

[dependencies.base64]
version = "0.22.1"

[dependencies.fs2]
version = "0.4"

[dependencies.local-store]
version = "0.1.0"

[dependencies.semver]
version = "1.0"

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

[dependencies.serde_json]
version = "1.0"

[dependencies.thiserror]
version = "2.0"

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

[dependencies.toml]
version = "0.8"

[dependencies.urlencoding]
version = "2.1.3"

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

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

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

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

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